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
2cefbaab
Commit
2cefbaab
authored
Nov 01, 2012
by
André Hentschel
Committed by
Alexandre Julliard
Nov 01, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winspool: Avoid memory leaks (coverity).
parent
5108b189
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
info.c
dlls/winspool.drv/info.c
+7
-2
No files found.
dlls/winspool.drv/info.c
View file @
2cefbaab
...
...
@@ -944,7 +944,11 @@ static BOOL CUPS_LoadPrinters(void)
unlink_ppd
(
ppd
);
}
HeapFree
(
GetProcessHeap
(),
0
,
ppd
);
if
(
!
added_driver
)
continue
;
if
(
!
added_driver
)
{
HeapFree
(
GetProcessHeap
(),
0
,
port
);
continue
;
}
memset
(
&
pi2
,
0
,
sizeof
(
PRINTER_INFO_2W
));
pi2
.
pPrinterName
=
nameW
;
...
...
@@ -2374,7 +2378,7 @@ LONG WINAPI DocumentPropertiesW(HWND hWnd, HANDLE hPrinter,
{
LPSTR
pDeviceNameA
=
strdupWtoA
(
pDeviceName
);
LPDEVMODEA
pDevModeInputA
=
DEVMODEdupWtoA
(
pDevModeInput
)
;
LPDEVMODEA
pDevModeInputA
;
LPDEVMODEA
pDevModeOutputA
=
NULL
;
LONG
ret
;
...
...
@@ -2386,6 +2390,7 @@ LONG WINAPI DocumentPropertiesW(HWND hWnd, HANDLE hPrinter,
if
(
ret
<
0
)
return
ret
;
pDevModeOutputA
=
HeapAlloc
(
GetProcessHeap
(),
0
,
ret
);
}
pDevModeInputA
=
DEVMODEdupWtoA
(
pDevModeInput
);
ret
=
DocumentPropertiesA
(
hWnd
,
hPrinter
,
pDeviceNameA
,
pDevModeOutputA
,
pDevModeInputA
,
fMode
);
if
(
pDevModeOutput
)
{
...
...
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