X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=cgiedit.c;h=1547518f1d0ff08d3f48bd9c8a0f904f6ce650b6;hp=18e18562b5da21aff4013561f4a65386b5b1d71b;hb=988e2e3c5aa4ca005dcdae7f9aab8a2d8e1d1801;hpb=f455d316021bd05b096bfb9de281210ea650b418 diff --git a/cgiedit.c b/cgiedit.c index 18e18562..1547518f 100644 --- a/cgiedit.c +++ b/cgiedit.c @@ -1,4 +1,4 @@ -const char cgiedit_rcs[] = "$Id: cgiedit.c,v 1.35 2002/04/26 21:50:02 jongfoster Exp $"; +const char cgiedit_rcs[] = "$Id: cgiedit.c,v 1.36 2002/04/26 21:53:30 jongfoster Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/cgiedit.c,v $ @@ -42,6 +42,9 @@ const char cgiedit_rcs[] = "$Id: cgiedit.c,v 1.35 2002/04/26 21:50:02 jongfoster * * Revisions : * $Log: cgiedit.c,v $ + * Revision 1.36 2002/04/26 21:53:30 jongfoster + * Fixing a memory leak. (Near, but not caused by, my earlier commit). + * * Revision 1.35 2002/04/26 21:50:02 jongfoster * Honouring default exports in edit-actions-for-url-filter template. * @@ -2424,7 +2427,7 @@ jb_err cgi_edit_actions_list(struct client_state *csp, snprintf(buf, 150, "%d", line_number + 2); if (!err) err = map(exports, "all-urls-s-next", 1, buf, 1); if (!err) err = map(exports, "all-urls-actions", 1, - actions_to_html(cur_line->data.action, csp), 0); + actions_to_html(csp, cur_line->data.action), 0); /* Skip the 2 lines */ cur_line = cur_line->next->next; @@ -2535,7 +2538,7 @@ jb_err cgi_edit_actions_list(struct client_state *csp, snprintf(buf, 150, "%d", line_number); err = map(section_exports, "s", 1, buf, 1); if (!err) err = map(section_exports, "actions", 1, - actions_to_html(cur_line->data.action, csp), 0); + actions_to_html(csp, cur_line->data.action), 0); if ( (!err) && (cur_line->next != NULL)