
cherokee at cherokee-project
May 24, 2011, 9:19 AM
Post #1 of 1
(74 views)
Permalink
|
|
[6713] cherokee/trunk/cherokee/source_interpreter.c: "Variable 'src-> launching_mutex' locked on line 735 was not unlocked."
|
|
Revision: 6713 http://svn.cherokee-project.com/changeset/6713 Author: alo Date: 2011-05-24 18:19:19 +0200 (Tue, 24 May 2011) Log Message: ----------- "Variable 'src->launching_mutex' locked on line 735 was not unlocked." (Klocwork.com Issue #114) Modified Paths: -------------- cherokee/trunk/cherokee/source_interpreter.c Modified: cherokee/trunk/cherokee/source_interpreter.c =================================================================== --- cherokee/trunk/cherokee/source_interpreter.c 2011-05-24 16:15:29 UTC (rev 6712) +++ cherokee/trunk/cherokee/source_interpreter.c 2011-05-24 16:19:19 UTC (rev 6713) @@ -760,7 +760,8 @@ /* Spawn */ ret = cherokee_virtual_server_get_error_log (CONN_VSRV(conn), &error_writer); if (ret != ret_ok) { - return ret_error; + ret = ret_error; + goto out; } ret = cherokee_source_interpreter_spawn (src, error_writer);
|