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
6daef74f
Commit
6daef74f
authored
Feb 02, 2022
by
Alex Henrie
Committed by
Alexandre Julliard
Feb 02, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ws2_32: Fix memory leaks on error paths in unix_gethostby* (scan-build).
Signed-off-by:
Alex Henrie
<
alexhenrie24@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
978df2e0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
unixlib.c
dlls/ws2_32/unixlib.c
+6
-6
No files found.
dlls/ws2_32/unixlib.c
View file @
6daef74f
...
...
@@ -865,9 +865,9 @@ static NTSTATUS unix_gethostbyaddr( void *args )
}
if
(
!
unix_host
)
ret
urn
(
locerr
<
0
?
errno_from_unix
(
errno
)
:
host_errno_from_unix
(
locerr
));
ret
=
hostent_from_unix
(
unix_host
,
params
->
host
,
params
->
size
);
ret
=
(
locerr
<
0
?
errno_from_unix
(
errno
)
:
host_errno_from_unix
(
locerr
));
else
ret
=
hostent_from_unix
(
unix_host
,
params
->
host
,
params
->
size
);
free
(
unix_buffer
);
return
ret
;
...
...
@@ -915,9 +915,9 @@ static NTSTATUS unix_gethostbyname( void *args )
}
if
(
!
unix_host
)
ret
urn
(
locerr
<
0
?
errno_from_unix
(
errno
)
:
host_errno_from_unix
(
locerr
));
ret
=
hostent_from_unix
(
unix_host
,
params
->
host
,
params
->
size
);
ret
=
(
locerr
<
0
?
errno_from_unix
(
errno
)
:
host_errno_from_unix
(
locerr
));
else
ret
=
hostent_from_unix
(
unix_host
,
params
->
host
,
params
->
size
);
free
(
unix_buffer
);
return
ret
;
...
...
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