diff options
Diffstat (limited to 'WWW/Library/Implementation/HTParse.c')
-rw-r--r-- | WWW/Library/Implementation/HTParse.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/WWW/Library/Implementation/HTParse.c b/WWW/Library/Implementation/HTParse.c index f69beaee..2e74e7f7 100644 --- a/WWW/Library/Implementation/HTParse.c +++ b/WWW/Library/Implementation/HTParse.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTParse.c,v 1.68 2011/05/24 09:21:01 tom Exp $ + * $LynxId: HTParse.c,v 1.69 2011/06/06 10:46:18 tom Exp $ * * Parse HyperText Document Address HTParse.c * ================================ @@ -300,7 +300,8 @@ static void convert_to_idna(char *host) buffer, idna_strerror((Idna_rc) code))); } - FREE(output); + if (output) + (free) (output); } free(buffer); } |