mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2025-12-22 05:36:09 +01:00
steamclient: Fix up converting stringlist
This commit is contained in:
parent
83871c7bf9
commit
c74de6a23b
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue