mirror of
https://github.com/ValveSoftware/Proton.git
synced 2024-12-27 23:25:50 +03:00
lsteamclient: Fix end of string check in relative path conversion.
This commit is contained in:
parent
0447662cef
commit
4f31b3b2b8
@ -164,7 +164,7 @@ bool steamclient_dos_path_to_unix_path(const char *src, char *dst, int is_url)
|
|||||||
const char *s;
|
const char *s;
|
||||||
char *d;
|
char *d;
|
||||||
|
|
||||||
for(s = src, d = dst; *src; ++s, ++d){
|
for(s = src, d = dst; *s; ++s, ++d){
|
||||||
if(*s == '\\')
|
if(*s == '\\')
|
||||||
*d = '/';
|
*d = '/';
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user