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
739cd1ea
Commit
739cd1ea
authored
May 30, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
May 30, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Don't crash when querying NULL values.
parent
8af1faec
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
http.c
dlls/wininet/http.c
+4
-0
No files found.
dlls/wininet/http.c
View file @
739cd1ea
...
@@ -1363,6 +1363,7 @@ static BOOL WINAPI HTTP_HttpQueryInfoW( LPWININETHTTPREQW lpwhr, DWORD dwInfoLev
...
@@ -1363,6 +1363,7 @@ static BOOL WINAPI HTTP_HttpQueryInfoW( LPWININETHTTPREQW lpwhr, DWORD dwInfoLev
return
TRUE
;
return
TRUE
;
}
}
case
HTTP_QUERY_STATUS_TEXT
:
case
HTTP_QUERY_STATUS_TEXT
:
if
(
lpwhr
->
lpszStatusText
)
{
{
DWORD
len
=
strlenW
(
lpwhr
->
lpszStatusText
);
DWORD
len
=
strlenW
(
lpwhr
->
lpszStatusText
);
if
(
len
+
1
>
*
lpdwBufferLength
/
sizeof
(
WCHAR
))
if
(
len
+
1
>
*
lpdwBufferLength
/
sizeof
(
WCHAR
))
...
@@ -1378,7 +1379,9 @@ static BOOL WINAPI HTTP_HttpQueryInfoW( LPWININETHTTPREQW lpwhr, DWORD dwInfoLev
...
@@ -1378,7 +1379,9 @@ static BOOL WINAPI HTTP_HttpQueryInfoW( LPWININETHTTPREQW lpwhr, DWORD dwInfoLev
return
TRUE
;
return
TRUE
;
}
}
break
;
case
HTTP_QUERY_VERSION
:
case
HTTP_QUERY_VERSION
:
if
(
lpwhr
->
lpszVersion
)
{
{
DWORD
len
=
strlenW
(
lpwhr
->
lpszVersion
);
DWORD
len
=
strlenW
(
lpwhr
->
lpszVersion
);
if
(
len
+
1
>
*
lpdwBufferLength
/
sizeof
(
WCHAR
))
if
(
len
+
1
>
*
lpdwBufferLength
/
sizeof
(
WCHAR
))
...
@@ -1394,6 +1397,7 @@ static BOOL WINAPI HTTP_HttpQueryInfoW( LPWININETHTTPREQW lpwhr, DWORD dwInfoLev
...
@@ -1394,6 +1397,7 @@ static BOOL WINAPI HTTP_HttpQueryInfoW( LPWININETHTTPREQW lpwhr, DWORD dwInfoLev
return
TRUE
;
return
TRUE
;
}
}
break
;
default:
default:
assert
(
LAST_TABLE_HEADER
==
(
HTTP_QUERY_UNLESS_MODIFIED_SINCE
+
1
));
assert
(
LAST_TABLE_HEADER
==
(
HTTP_QUERY_UNLESS_MODIFIED_SINCE
+
1
));
...
...
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