0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-05-29 00:03:45 +02:00

hurt: Do not store to-be-freed strings in const pointers (+ cast when freeing).

Take away the const.
This commit is contained in:
Jilles Tjoelker 2007-12-13 00:03:20 +01:00
parent e8149a2c64
commit 19fcdbd561

View file

@ -39,10 +39,10 @@ typedef struct _hurt_state {
} hurt_state_t;
typedef struct _hurt {
const char *ip;
char *ip;
struct sockaddr *saddr;
int saddr_bits;
const char *reason;
char *reason;
time_t expire;
} hurt_t;
/* }}} */
@ -559,8 +559,8 @@ hurt_destroy(void *hurt)
return;
h = (hurt_t *) hurt;
MyFree((char *) h->ip);
MyFree((char *) h->reason);
MyFree(h->ip);
MyFree(h->reason);
MyFree(h);
}
/* }}} */