1
0
mirror of git://erdgeist.org/opentracker synced 2025-01-27 23:26:27 +00:00

Do not write, if no string is passed

This commit is contained in:
erdgeist 2007-01-24 21:18:42 +00:00
parent 99c1ba1896
commit d7c00a909b

View File

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