-
in resource.c:
(approx) line 719:
if( (chEnv[i]=malloc( 256 )) == NULL ) {
should be
if( (chEnv[i]=malloc( size )) == NULL ) {
to malloc the correct size for long cgi URLs.
jesse@celestialaudio.com.
2004-01-06 22:44:11 UTC by nobody
-
two related problems, in resource.c:
(approx) line 717:
if( (i == 0) && (chQuery != NULL) ) size = strlen(chQuery);
should be:
f( (i == 0) && (chQuery != NULL) ) size =
strlen(chQuery) + 20; /* +20 for 'QUERY_STRING='
prepended below */
i.e. space needs to be allocated for the "QUERY_STRING=".
2004-01-06 22:41:15 UTC by nobody
-
request.c, line 749 I believe (I've changed a few
things), there is a for (i=0; i
2004-01-06 22:38:03 UTC by nobody
-
Bug fixed and new features added. More info in the Changelog.
2002-03-14 14:09:37 UTC by acc2
-
AHD v0.0.7 released, read the changelog for more information.
2002-03-02 14:33:05 UTC by acc2
-
Buggs fixed, code optimized, and new features.
2002-02-14 19:14:36 UTC by acc2
-
Thank you.
2002-02-04 19:33:08 UTC by acc2
-
AHD v0.0.5 released, enjoy !
2002-01-26 14:05:52 UTC by acc2
-
AHD v0.0.5 will be released soon.
2001-12-21 13:18:25 UTC by acc2
-
Anonymous committed patchset 1 of module CVSROOT to the AHD CVS repository, changing 11 files.
2001-12-19 15:11:03 UTC by nobody