[w3m-dev-en 00827] Re: w3m-cvs segfaults on news://<mid> URLs

* url.c (openURL): check pu->file for news:
From: Fumitoshi UKAI  <ukai@debian.or.jp>
This commit is contained in:
Fumitoshi UKAI
2002-11-04 08:47:37 +00:00
parent 7fc90cee15
commit 0bb13ab6c5
2 changed files with 9 additions and 2 deletions

4
url.c
View File

@@ -1,4 +1,4 @@
/* $Id: url.c,v 1.53 2002/11/02 18:12:06 ukai Exp $ */
/* $Id: url.c,v 1.54 2002/11/04 08:47:38 ukai Exp $ */
#include "fm.h"
#include <sys/types.h>
#include <sys/socket.h>
@@ -1804,6 +1804,8 @@ openURL(char *url, ParsedURL *pu, ParsedURL *current,
fprintf(fw, "ARTICLE %s\r\n", p);
}
else {
if (pu->file == NULL || *pu->file == '\0')
goto nntp_error;
/* pu-file contains '@' => news:<message-id> */
fprintf(fw, "ARTICLE <%s>\r\n", url_unquote(pu->file));
}