Show
Ignore:
Timestamp:
2000-05-18 03:18:08 (9 years ago)
Author:
Thomas Roessler <roessler@…>
Branch:
HEAD
Message:

Catch a segmentation fault in mutt_convert_string ().

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • charset.c

    r1716 r1820  
    388388  const char *repls[] = { "\357\277\275", "?", 0 }; 
    389389 
     390  if (!s || !*s) 
     391    return 0; 
     392 
    390393  if (to && from && (cd = mutt_iconv_open (to, from)) != (iconv_t)-1)  
    391394  {