diff options
| author | Tatsuya Kinoshita <tats@debian.org> | 2013-08-04 02:38:35 +0000 | 
|---|---|---|
| committer | Tatsuya Kinoshita <tats@debian.org> | 2013-08-04 02:38:35 +0000 | 
| commit | 1515daab163bf302935a42aada99e518e082d95a (patch) | |
| tree | 26201823d36c953de053f408c91bf0ea4b46cde8 | |
| parent | Merge branch 'feature/debian-version' (diff) | |
| parent | Fix segfault of loadGeneralFile() (diff) | |
| download | w3m-1515daab163bf302935a42aada99e518e082d95a.tar.gz w3m-1515daab163bf302935a42aada99e518e082d95a.zip | |
Merge branch 'feature/siteconf'
| -rw-r--r-- | file.c | 5 | 
1 files changed, 3 insertions, 2 deletions
| @@ -2267,10 +2267,11 @@ loadGeneralFile(char *path, ParsedURL *volatile current, char *referer,      if (header_string)  	header_string = NULL;  #ifdef USE_NNTP -    if (f.scheme == SCM_NNTP || f.scheme == SCM_NEWS) +    if (b && b != NO_BUFFER && (f.scheme == SCM_NNTP || f.scheme == SCM_NEWS))  	reAnchorNewsheader(b);  #endif -    preFormUpdateBuffer(b); +    if (b && b != NO_BUFFER) +	preFormUpdateBuffer(b);      TRAP_OFF;      return b;  } | 
