diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | file.c | 7 |
2 files changed, 8 insertions, 4 deletions
@@ -1,3 +1,8 @@ +2001-11-30 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp> + + * [w3m-dev 02596] + * file.c (acceptableEncoding): fix segfault if no decoder found + 2001-11-30 Fumitoshi UKAI <ukai@debian.or.jp> * [w3m-dev 02595] @@ -1,4 +1,4 @@ -/* $Id: file.c,v 1.22 2001/11/30 10:27:32 ukai Exp $ */ +/* $Id: file.c,v 1.23 2001/11/30 10:30:07 ukai Exp $ */ #include "fm.h" #include <sys/types.h> #include "myctype.h" @@ -401,10 +401,9 @@ acceptableEncoding() pushText(l, d->encoding); } } + encodings = Strnew(); while ((p = popText(l)) != NULL) { - if (encodings == NULL) - encodings = Strnew(); - else + if (encodings->length) Strcat_charp(encodings, ", "); Strcat_charp(encodings, p); } |