Browse Source

Do not write, if no string is passed

dynamic-accesslists
erdgeist 18 years ago
parent
commit
d7c00a909b
  1. 2
      scan_urlencoded_query.c

2
scan_urlencoded_query.c

@ -38,7 +38,7 @@ retry_parsing: @@ -38,7 +38,7 @@ retry_parsing:
break;
case '?':
if( flags == SCAN_PATH ) goto found_terminator;
*d++ = c;
if( d ) *d++ = c;
goto retry_parsing;
break;
case '=':

Loading…
Cancel
Save