
cherokee at cherokee-project
May 27, 2011, 6:51 AM
Post #1 of 1
(100 views)
Permalink
|
|
[6727] cherokee/trunk/cherokee/server.c: The exception handling code was calling the wrong destructor.
|
|
Revision: 6727 http://svn.cherokee-project.com/changeset/6727 Author: alo Date: 2011-05-27 15:51:07 +0200 (Fri, 27 May 2011) Log Message: ----------- The exception handling code was calling the wrong destructor. Modified Paths: -------------- cherokee/trunk/cherokee/server.c Modified: cherokee/trunk/cherokee/server.c =================================================================== --- cherokee/trunk/cherokee/server.c 2011-05-27 13:46:52 UTC (rev 6726) +++ cherokee/trunk/cherokee/server.c 2011-05-27 13:51:07 UTC (rev 6727) @@ -241,7 +241,7 @@ return ret_ok; error: - cherokee_handler_free (HANDLER(n)); + cherokee_server_free (n); return ret_error; }
|