fixup! lsteamclient: Allocate memory for every path conversion.

CW-Bug-Id: #22896
This commit is contained in:
Paul Gofman 2023-10-24 10:16:57 -06:00
parent 855fac8d63
commit 6ebd1d11de

View File

@ -275,7 +275,7 @@ const char *steamclient_dos_to_unix_path( const char *src, int is_url )
done:
len = strlen( buffer );
if (!(dst = HeapAlloc( GetProcessHeap(), 0, len + 1 ))) return NULL;
memcpy( dst, buffer, len );
memcpy( dst, buffer, len + 1 );
return dst;
}