diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2003-05-04 04:35:10 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2003-05-04 04:35:10 +0000 |
commit | ac88af1f712485642fc868cef505dbb46403a48d (patch) | |
tree | f59359059000d4329b2fc47027dea8aa2263166e /src/conns.h | |
parent | 65115c75c87338ec49068b0e81c4edae4d66366a (diff) |
Fixed a bug that would kill a child process because of an invalid
safefree() call. Basically, destroy_conn() was trying to free memory
not allocated by malloc. [Fix by David T. Pierson]
Diffstat (limited to 'src/conns.h')
-rw-r--r-- | src/conns.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/conns.h b/src/conns.h index 6e803d3..a2c9017 100644 --- a/src/conns.h +++ b/src/conns.h @@ -1,4 +1,4 @@ -/* $Id: conns.h,v 1.13 2003-04-16 16:37:58 rjkaes Exp $ +/* $Id: conns.h,v 1.14 2003-05-04 04:35:10 rjkaes Exp $ * * See 'conns.c' for a detailed description. * @@ -40,8 +40,7 @@ struct conn_s { /* * Store the error response if there is one. * This structure stores key -> value mappings for substitution - * in the error HTML files. a NULL pointer indicates the end of - * the array + * in the error HTML files. */ struct error_variable_s { char *error_key; |