Skip to content
Snippets Groups Projects
Commit fedc0c2b authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Fixed memory leak.

Rev: src/modules/spider/spider.c:1.69
parent c9c0dbbd
No related branches found
No related tags found
No related merge requests found
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
#include "threads.h" #include "threads.h"
#include "operators.h" #include "operators.h"
RCSID("$Id: spider.c,v 1.68 1998/06/12 19:36:51 noring Exp $"); RCSID("$Id: spider.c,v 1.69 1998/06/25 22:37:33 grubba Exp $");
#ifdef HAVE_PWD_H #ifdef HAVE_PWD_H
#include <pwd.h> #include <pwd.h>
...@@ -972,6 +972,8 @@ void do_html_parse_lines(struct pike_string *ss, ...@@ -972,6 +972,8 @@ void do_html_parse_lines(struct pike_string *ss,
apply_svalue(&sval1,4+(extra_args?extra_args->size:0)); apply_svalue(&sval1,4+(extra_args?extra_args->size:0));
HANDLE_RETURN_VALUE(m); HANDLE_RETURN_VALUE(m);
continue; continue;
} else {
free_svalue(&sval2);
} }
i=j; i=j;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment