Changeset 1745
- Timestamp:
- 08/06/08 11:59:04 (5 months ago)
- Files:
-
- cherokee/trunk/ChangeLog (modified) (1 diff)
- cherokee/trunk/cherokee/handler_fcgi.c (modified) (2 diffs)
- cherokee/trunk/cherokee/handler_scgi.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cherokee/trunk/ChangeLog
r1741 r1745 1 2008-08-06 Alvaro Lopez Ortega <alvaro@alobbs.com> 2 3 * cherokee/handler_scgi.c (connect_to_server), 4 cherokee/handler_fcgi.c (connect_to_server): Fixes a bug that 5 could lead the server to a crash when it was trying to spawn a new 6 interpreter. 7 1 8 2008-08-05 Alvaro Lopez Ortega <alvaro@alobbs.com> 2 9 cherokee/trunk/cherokee/handler_fcgi.c
r1708 r1745 502 502 { 503 503 ret_t ret; 504 cherokee_source_interpreter_t *src_int; 504 505 cherokee_connection_t *conn = HANDLER_CONN(hdl); 505 506 cherokee_handler_fcgi_props_t *props = HANDLER_FCGI_PROPS(hdl); 506 cherokee_source_interpreter_t *src_int = SOURCE_INT(hdl->src_ref);507 507 508 508 /* Get a reference to the target host … … 513 513 return ret; 514 514 } 515 516 src_int = SOURCE_INT(hdl->src_ref); 515 517 516 518 /* Try to connect cherokee/trunk/cherokee/handler_scgi.c
r1708 r1745 257 257 { 258 258 ret_t ret; 259 cherokee_source_interpreter_t *src_int; 259 260 cherokee_connection_t *conn = HANDLER_CONN(hdl); 260 261 cherokee_handler_scgi_props_t *props = HANDLER_SCGI_PROPS(hdl); 261 cherokee_source_interpreter_t *src_int = SOURCE_INT(hdl->src_ref);262 262 263 263 /* Get a reference to the target host … … 268 268 return ret; 269 269 } 270 271 src_int = SOURCE_INT(hdl->src_ref); 270 272 271 273 /* Try to connect