Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
82c15403
Commit
82c15403
authored
Mar 24, 2007
by
Hans Leidekker
Committed by
Alexandre Julliard
Mar 26, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mpr: Fix buffer size calculation in WNetGetUniversalNameW.
parent
03d637a3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
10 deletions
+14
-10
wnet.c
dlls/mpr/wnet.c
+14
-10
No files found.
dlls/mpr/wnet.c
View file @
82c15403
...
...
@@ -1713,8 +1713,7 @@ DWORD WINAPI WNetGetUniversalNameA ( LPCSTR lpLocalPath, DWORD dwInfoLevel,
DWORD
WINAPI
WNetGetUniversalNameW
(
LPCWSTR
lpLocalPath
,
DWORD
dwInfoLevel
,
LPVOID
lpBuffer
,
LPDWORD
lpBufferSize
)
{
LPUNIVERSAL_NAME_INFOW
uniw
;
DWORD
err
,
len
;
DWORD
err
,
size
;
FIXME
(
"(%s, 0x%08X, %p, %p): stub
\n
"
,
debugstr_w
(
lpLocalPath
),
dwInfoLevel
,
lpBuffer
,
lpBufferSize
);
...
...
@@ -1722,23 +1721,28 @@ DWORD WINAPI WNetGetUniversalNameW ( LPCWSTR lpLocalPath, DWORD dwInfoLevel,
switch
(
dwInfoLevel
)
{
case
UNIVERSAL_NAME_INFO_LEVEL
:
err
=
WN_MORE_DATA
;
len
=
sizeof
(
*
uniw
)
+
lstrlenW
(
lpLocalPath
);
if
(
*
lpBufferSize
<=
len
)
{
LPUNIVERSAL_NAME_INFOW
info
=
(
LPUNIVERSAL_NAME_INFOW
)
lpBuffer
;
size
=
sizeof
(
*
info
)
+
(
lstrlenW
(
lpLocalPath
)
+
1
)
*
sizeof
(
WCHAR
);
if
(
*
lpBufferSize
<
size
)
{
err
=
WN_MORE_DATA
;
break
;
uniw
=
lpBuffer
;
uniw
->
lpUniversalName
=
(
LPWSTR
)
&
uniw
[
1
]
;
lstrcpyW
(
uniw
->
lpUniversalName
,
lpLocalPath
);
*
lpBufferSize
=
len
;
}
info
->
lpUniversalName
=
(
LPWSTR
)((
char
*
)
info
+
sizeof
(
*
info
))
;
lstrcpyW
(
info
->
lpUniversalName
,
lpLocalPath
);
*
lpBufferSize
=
size
;
err
=
WN_NO_ERROR
;
break
;
}
case
REMOTE_NAME_INFO_LEVEL
:
err
=
WN_NO_NETWORK
;
break
;
default:
err
=
WN_BAD_VALUE
;
break
;
}
SetLastError
(
err
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment