Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
3d5a3a32
Commit
3d5a3a32
authored
Jun 10, 2010
by
Marcus Meissner
Committed by
Alexandre Julliard
Jun 10, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Fixed buffer lengths in InternetCrackUrlW tests.
parent
138b2435
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
19 deletions
+19
-19
url.c
dlls/wininet/tests/url.c
+19
-19
No files found.
dlls/wininet/tests/url.c
View file @
3d5a3a32
...
@@ -200,7 +200,7 @@ static void test_crack_url(const crack_url_test_t *test)
...
@@ -200,7 +200,7 @@ static void test_crack_url(const crack_url_test_t *test)
urlw
.
dwUrlPathLength
=
1
;
urlw
.
dwUrlPathLength
=
1
;
urlw
.
dwExtraInfoLength
=
1
;
urlw
.
dwExtraInfoLength
=
1
;
MultiByteToWideChar
(
CP_ACP
,
0
,
test
->
url
,
-
1
,
buf
,
sizeof
(
buf
));
MultiByteToWideChar
(
CP_ACP
,
0
,
test
->
url
,
-
1
,
buf
,
sizeof
(
buf
)
/
sizeof
(
buf
[
0
])
);
b
=
InternetCrackUrlW
(
buf
,
lstrlenW
(
buf
),
0
,
&
urlw
);
b
=
InternetCrackUrlW
(
buf
,
lstrlenW
(
buf
),
0
,
&
urlw
);
if
(
!
b
&&
GetLastError
()
==
ERROR_CALL_NOT_IMPLEMENTED
)
{
if
(
!
b
&&
GetLastError
()
==
ERROR_CALL_NOT_IMPLEMENTED
)
{
win_skip
(
"InternetCrackUrlW is not implemented
\n
"
);
win_skip
(
"InternetCrackUrlW is not implemented
\n
"
);
...
@@ -416,19 +416,19 @@ static void InternetCrackUrlW_test(void)
...
@@ -416,19 +416,19 @@ static void InternetCrackUrlW_test(void)
user
[
0
]
=
0
;
user
[
0
]
=
0
;
pwd
[
0
]
=
0
;
pwd
[
0
]
=
0
;
memset
(
&
comp
,
0
,
sizeof
comp
);
memset
(
&
comp
,
0
,
sizeof
comp
);
comp
.
dwStructSize
=
sizeof
comp
;
comp
.
dwStructSize
=
sizeof
(
comp
)
;
comp
.
lpszScheme
=
scheme
;
comp
.
lpszScheme
=
scheme
;
comp
.
dwSchemeLength
=
sizeof
scheme
;
comp
.
dwSchemeLength
=
sizeof
(
scheme
)
/
sizeof
(
scheme
[
0
])
;
comp
.
lpszHostName
=
host
;
comp
.
lpszHostName
=
host
;
comp
.
dwHostNameLength
=
sizeof
host
;
comp
.
dwHostNameLength
=
sizeof
(
host
)
/
sizeof
(
host
[
0
])
;
comp
.
lpszUserName
=
user
;
comp
.
lpszUserName
=
user
;
comp
.
dwUserNameLength
=
sizeof
user
;
comp
.
dwUserNameLength
=
sizeof
(
user
)
/
sizeof
(
user
[
0
])
;
comp
.
lpszPassword
=
pwd
;
comp
.
lpszPassword
=
pwd
;
comp
.
dwPasswordLength
=
sizeof
pwd
;
comp
.
dwPasswordLength
=
sizeof
(
pwd
)
/
sizeof
(
pwd
[
0
])
;
comp
.
lpszUrlPath
=
urlpart
;
comp
.
lpszUrlPath
=
urlpart
;
comp
.
dwUrlPathLength
=
sizeof
urlpart
;
comp
.
dwUrlPathLength
=
sizeof
(
urlpart
)
/
sizeof
(
urlpart
[
0
])
;
comp
.
lpszExtraInfo
=
extra
;
comp
.
lpszExtraInfo
=
extra
;
comp
.
dwExtraInfoLength
=
sizeof
extra
;
comp
.
dwExtraInfoLength
=
sizeof
(
extra
)
/
sizeof
(
extra
[
0
])
;
SetLastError
(
0xdeadbeef
);
SetLastError
(
0xdeadbeef
);
r
=
InternetCrackUrlW
(
NULL
,
0
,
0
,
&
comp
);
r
=
InternetCrackUrlW
(
NULL
,
0
,
0
,
&
comp
);
...
@@ -471,9 +471,9 @@ static void InternetCrackUrlW_test(void)
...
@@ -471,9 +471,9 @@ static void InternetCrackUrlW_test(void)
memset
(
&
comp
,
0
,
sizeof
comp
);
memset
(
&
comp
,
0
,
sizeof
comp
);
comp
.
dwStructSize
=
sizeof
comp
;
comp
.
dwStructSize
=
sizeof
comp
;
comp
.
lpszHostName
=
host
;
comp
.
lpszHostName
=
host
;
comp
.
dwHostNameLength
=
sizeof
host
;
comp
.
dwHostNameLength
=
sizeof
(
host
)
/
sizeof
(
host
[
0
])
;
comp
.
lpszUrlPath
=
urlpart
;
comp
.
lpszUrlPath
=
urlpart
;
comp
.
dwUrlPathLength
=
sizeof
urlpart
;
comp
.
dwUrlPathLength
=
sizeof
(
urlpart
)
/
sizeof
(
urlpart
[
0
])
;
r
=
InternetCrackUrlW
(
url
,
0
,
0
,
&
comp
);
r
=
InternetCrackUrlW
(
url
,
0
,
0
,
&
comp
);
ok
(
r
,
"failed to crack url
\n
"
);
ok
(
r
,
"failed to crack url
\n
"
);
...
@@ -493,11 +493,11 @@ static void InternetCrackUrlW_test(void)
...
@@ -493,11 +493,11 @@ static void InternetCrackUrlW_test(void)
memset
(
&
comp
,
0
,
sizeof
comp
);
memset
(
&
comp
,
0
,
sizeof
comp
);
comp
.
dwStructSize
=
sizeof
comp
;
comp
.
dwStructSize
=
sizeof
comp
;
comp
.
lpszHostName
=
host
;
comp
.
lpszHostName
=
host
;
comp
.
dwHostNameLength
=
sizeof
host
;
comp
.
dwHostNameLength
=
sizeof
(
host
)
/
sizeof
(
host
[
0
])
;
comp
.
lpszUrlPath
=
urlpart
;
comp
.
lpszUrlPath
=
urlpart
;
comp
.
dwUrlPathLength
=
sizeof
urlpart
;
comp
.
dwUrlPathLength
=
sizeof
(
urlpart
)
/
sizeof
(
urlpart
[
0
])
;
comp
.
lpszExtraInfo
=
NULL
;
comp
.
lpszExtraInfo
=
NULL
;
comp
.
dwExtraInfoLength
=
sizeof
extra
;
comp
.
dwExtraInfoLength
=
sizeof
(
extra
)
/
sizeof
(
extra
[
0
])
;
r
=
InternetCrackUrlW
(
url
,
0
,
0
,
&
comp
);
r
=
InternetCrackUrlW
(
url
,
0
,
0
,
&
comp
);
ok
(
r
,
"failed to crack url
\n
"
);
ok
(
r
,
"failed to crack url
\n
"
);
...
@@ -547,17 +547,17 @@ static void InternetCrackUrlW_test(void)
...
@@ -547,17 +547,17 @@ static void InternetCrackUrlW_test(void)
memset
(
&
comp
,
0
,
sizeof
comp
);
memset
(
&
comp
,
0
,
sizeof
comp
);
comp
.
dwStructSize
=
sizeof
comp
;
comp
.
dwStructSize
=
sizeof
comp
;
comp
.
lpszScheme
=
scheme
;
comp
.
lpszScheme
=
scheme
;
comp
.
dwSchemeLength
=
sizeof
scheme
;
comp
.
dwSchemeLength
=
sizeof
(
scheme
)
/
sizeof
(
scheme
[
0
])
;
comp
.
lpszHostName
=
host
;
comp
.
lpszHostName
=
host
;
comp
.
dwHostNameLength
=
sizeof
host
;
comp
.
dwHostNameLength
=
sizeof
(
host
)
/
sizeof
(
host
[
0
])
;
comp
.
lpszUserName
=
user
;
comp
.
lpszUserName
=
user
;
comp
.
dwUserNameLength
=
sizeof
user
;
comp
.
dwUserNameLength
=
sizeof
(
user
)
/
sizeof
(
user
[
0
])
;
comp
.
lpszPassword
=
pwd
;
comp
.
lpszPassword
=
pwd
;
comp
.
dwPasswordLength
=
sizeof
pwd
;
comp
.
dwPasswordLength
=
sizeof
(
pwd
)
/
sizeof
(
pwd
[
0
])
;
comp
.
lpszUrlPath
=
urlpart
;
comp
.
lpszUrlPath
=
urlpart
;
comp
.
dwUrlPathLength
=
sizeof
urlpart
;
comp
.
dwUrlPathLength
=
sizeof
(
urlpart
)
/
sizeof
(
urlpart
[
0
])
;
comp
.
lpszExtraInfo
=
extra
;
comp
.
lpszExtraInfo
=
extra
;
comp
.
dwExtraInfoLength
=
sizeof
extra
;
comp
.
dwExtraInfoLength
=
sizeof
(
extra
)
/
sizeof
(
extra
[
0
])
;
r
=
InternetCrackUrlW
(
url3
,
0
,
0
,
&
comp
);
r
=
InternetCrackUrlW
(
url3
,
0
,
0
,
&
comp
);
ok
(
r
,
"InternetCrackUrlW failed unexpectedly
\n
"
);
ok
(
r
,
"InternetCrackUrlW failed unexpectedly
\n
"
);
ok
(
host
[
0
]
==
'x'
,
"host should be x.org
\n
"
);
ok
(
host
[
0
]
==
'x'
,
"host should be x.org
\n
"
);
...
...
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