X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Kernel%2Fsystem.c;h=a720addf856e8d653dead77f49cc8b0c47dc3007;hb=04b10ec9d26122069ed497cc0035e3a5f20f9197;hp=f9139185d842adc4ffd75f35bdf7a1131b10b086;hpb=7f07ccaa4d128305aed6f67f1f57a5c9276a895f;p=tpg%2Facess2.git diff --git a/Kernel/system.c b/Kernel/system.c index f9139185..a720addf 100644 --- a/Kernel/system.c +++ b/Kernel/system.c @@ -533,6 +533,7 @@ tConfigFile *System_Int_ParseFile(char *FileData) // Quoted if( *ptr == '"' ) { ptr ++; + ret->Lines[i].Parts[j] = ptr; while( *ptr && !(*ptr == '"' && ptr[-1] == '\\') && *ptr != '\n' ) ptr++; }