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
585a66a4
Commit
585a66a4
authored
Oct 30, 2012
by
André Hentschel
Committed by
Alexandre Julliard
Oct 31, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11: Avoid memory leaks (coverity).
parent
42f791cc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
clipboard.c
dlls/winex11.drv/clipboard.c
+1
-0
xrender.c
dlls/winex11.drv/xrender.c
+1
-1
No files found.
dlls/winex11.drv/clipboard.c
View file @
585a66a4
...
...
@@ -2400,6 +2400,7 @@ static BOOL X11DRV_CLIPBOARD_ReadProperty(Display *display, Window w, Atom prop,
if
(
!
tmp
)
{
HeapFree
(
GetProcessHeap
(),
0
,
buf
);
HeapFree
(
GetProcessHeap
(),
0
,
prop_data
);
return
FALSE
;
}
...
...
dlls/winex11.drv/xrender.c
View file @
585a66a4
...
...
@@ -1405,9 +1405,9 @@ static void UploadGlyph(struct xrender_physdev *physDev, int glyph, AA_Type form
pXRenderAddGlyphs
(
gdi_display
,
formatEntry
->
glyphset
,
&
gid
,
&
gi
,
1
,
buflen
?
buf
:
zero
,
buflen
?
buflen
:
sizeof
(
zero
));
HeapFree
(
GetProcessHeap
(),
0
,
buf
);
}
HeapFree
(
GetProcessHeap
(),
0
,
buf
);
formatEntry
->
gis
[
glyph
]
=
gi
;
}
...
...
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