From: SourceForge.net <no...@so...> - 2008-04-17 09:37:35
|
Bugs item #1944743, was opened at 2008-04-17 11:05 Message generated for change (Comment added) made by vasiljevic You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=719006&aid=1944743&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: Closed >Resolution: Fixed Priority: 9 Private: No Submitted By: bogdan dragusanu (bdragusanu) >Assigned to: Zoran Vasiljevic (vasiljevic) 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.) ---------------------------------------------------------------------- >Comment By: Zoran Vasiljevic (vasiljevic) Date: 2008-04-17 11:37 Message: Logged In: YES user_id=95086 Originator: NO Fixed (duplicate). ---------------------------------------------------------------------- Comment By: bogdan dragusanu (bdragusanu) Date: 2008-04-17 11:17 Message: Logged In: YES user_id=2065440 Originator: YES Rising priority to maximum since this definetely should be fixed ASAP. I would have done it myself, but I just registered with sourceforge.net and don't know if I have rights to do it. Also I don't know who is in charge with this module, so picking up someone from the 'Assigned To' list. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=719006&aid=1944743&group_id=130646 |