X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;ds=sidebyside;f=Kernel%2Fsystem.c;h=a720addf856e8d653dead77f49cc8b0c47dc3007;hb=60149f3ea48a795f9fbb15149e87d3a41aa136bf;hp=f9139185d842adc4ffd75f35bdf7a1131b10b086;hpb=d1714d8a27a603ce8ac4ba91e8c0c3d060d767ee;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++; }