lsteamclient: Fix source length for ntdll_umbstowcs().
CW-Bug-Id: #23962
This commit is contained in:
parent
dbc381d95e
commit
54378d5357
1 changed files with 2 additions and 2 deletions
|
@ -561,7 +561,7 @@ char *steamclient_dos_to_unix_path( const char *src, int is_url )
|
||||||
uint32_t r;
|
uint32_t r;
|
||||||
|
|
||||||
if (is_url) while (*src == '/') ++src;
|
if (is_url) while (*src == '/') ++src;
|
||||||
r = ntdll_umbstowcs( src, -1, srcW + 4, PATH_MAX - 4 );
|
r = ntdll_umbstowcs( src, strlen( src ) + 1, srcW + 4, PATH_MAX - 4 );
|
||||||
if (r == 0) unix_path = NULL;
|
if (r == 0) unix_path = NULL;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -628,7 +628,7 @@ const char **steamclient_dos_to_unix_path_array( const char **src )
|
||||||
TRACE( " src[%zu] %s\n", s - src, debugstr_a(*s) );
|
TRACE( " src[%zu] %s\n", s - src, debugstr_a(*s) );
|
||||||
if (IS_ABSOLUTE( *s ))
|
if (IS_ABSOLUTE( *s ))
|
||||||
{
|
{
|
||||||
ntdll_umbstowcs( *s, -1, scratch + 4, PATH_MAX - 4 );
|
ntdll_umbstowcs( *s, strlen( *s ) + 1, scratch + 4, PATH_MAX - 4 );
|
||||||
collapse_path( scratch, 4 );
|
collapse_path( scratch, 4 );
|
||||||
*o = get_unix_file_name( scratch );
|
*o = get_unix_file_name( scratch );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue