diff options
Diffstat (limited to 'src/misc.c')
-rw-r--r-- | src/misc.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/misc.c b/src/misc.c index 147895e9b..7afd17e8f 100644 --- a/src/misc.c +++ b/src/misc.c @@ -878,7 +878,10 @@ int nickIsServices(char *tempnick, int bot) } } } - + + /* Somehow, something tells me we should free this :) -GD */ + free(nick); + return found; } |