Browse Source

smb: fix potential string to wide string copy

The type of net_resource depends on the UNICODE define.
cherry-pick-c5513cf9
Steve Lhomme 3 years ago
parent
commit
55be3ce607
  1. 4
      modules/access/smb.c

4
modules/access/smb.c

@ -524,7 +524,7 @@ static void Win32AddConnection( stream_t *p_access, const char *psz_server,
const char *psz_pwd, const char *psz_domain )
{
char psz_remote[MAX_PATH];
NETRESOURCE net_resource;
NETRESOURCEA net_resource;
DWORD i_result;
VLC_UNUSED( psz_domain );
@ -544,7 +544,7 @@ static void Win32AddConnection( stream_t *p_access, const char *psz_server,
net_resource.lpRemoteName = psz_remote;
i_result = WNetAddConnection2( &net_resource, psz_pwd, psz_user, 0 );
i_result = WNetAddConnection2A( &net_resource, psz_pwd, psz_user, 0 );
if( i_result != NO_ERROR )
{

Loading…
Cancel
Save