From: SourceForge.net <no...@so...> - 2008-04-17 09:26:44
|
Bugs item #1944749, was opened at 2008-04-17 12:21 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=719006&aid=1944749&group_id=130646 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: module: nscgi Group: Bug Status: Open Resolution: None Priority: 5 Private: No Submitted By: bogdan dragusanu (bdragusanu) Assigned to: Nobody/Anonymous (nobody) Summary: Bug in CgiExec Initial Comment: In latest nscgi.c code (http://naviserver.cvs.sourceforge.net/naviserver/naviserver/nscgi/nscgi.c?revision=1.9&view=markup) there is a bug at line 791: for (i = 0; p != '\0'; ++p) { Should have been for (i = 0; *p != '\0'; ++p) { I am very surprised how CGIs were working for you. (In Linux it loops endlessly, eventualy crashing when requesting whatever CGI.) ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=719006&aid=1944749&group_id=130646 |