Author: joes
Date: Mon Apr 11 13:53:57 2005
New Revision: 160949
URL: http://svn.apache.org/viewcvs?view=rev&rev=160949
Log:
Always set dlen and slen.
Modified:
httpd/apreq/branches/multi-env-unstable/library/util.c
Modified: httpd/apreq/branches/multi-env-unstable/library/util.c
URL:
http://svn.apache.org/viewcvs/httpd/apreq/branches/multi-env-unstable/library/util.c?view=diff&r1=160948&r2=160949
==============================================================================
--- httpd/apreq/branches/multi-env-unstable/library/util.c (original)
+++ httpd/apreq/branches/multi-env-unstable/library/util.c Mon Apr 11 13:53:57
2005
@@ -509,6 +509,8 @@
break;
default:
+ *dlen = d - start;
+ *slen = s - src;
*d = 0;
return APREQ_ERROR_BADSEQ;
}