steamclient: Fix up converting stringlist

This commit is contained in:
Andrew Eikum 2018-12-10 15:19:45 -06:00
parent 83871c7bf9
commit c74de6a23b

View File

@ -132,7 +132,7 @@ const char **steamclient_dos_to_unix_stringlist(const char **src)
const char *r;
char *l;
*o = HeapAlloc(GetProcessHeap(), 0, strlen(*s) + 1);
for(l = *s, r = *o; *l; ++l, ++r){
for(r = *s, l = *o; *r; ++l, ++r){
if(*r == '\\')
*l = '/';
else