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
5dadeeb2
Commit
5dadeeb2
authored
Sep 07, 2007
by
Huw Davies
Committed by
Alexandre Julliard
Sep 10, 2007
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wineps.drv: Ignore an empty output string.
parent
5e674f35
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
init.c
dlls/wineps.drv/init.c
+1
-1
No files found.
dlls/wineps.drv/init.c
View file @
5dadeeb2
...
@@ -356,7 +356,7 @@ BOOL PSDRV_CreateDC( HDC hdc, PSDRV_PDEVICE **pdev, LPCWSTR driver, LPCWSTR devi
...
@@ -356,7 +356,7 @@ BOOL PSDRV_CreateDC( HDC hdc, PSDRV_PDEVICE **pdev, LPCWSTR driver, LPCWSTR devi
physDev
->
logPixelsX
=
physDev
->
pi
->
ppd
->
DefaultResolution
;
physDev
->
logPixelsX
=
physDev
->
pi
->
ppd
->
DefaultResolution
;
physDev
->
logPixelsY
=
physDev
->
pi
->
ppd
->
DefaultResolution
;
physDev
->
logPixelsY
=
physDev
->
pi
->
ppd
->
DefaultResolution
;
if
(
output
)
{
if
(
output
&&
*
output
)
{
INT
len
=
WideCharToMultiByte
(
CP_ACP
,
0
,
output
,
-
1
,
NULL
,
0
,
NULL
,
NULL
);
INT
len
=
WideCharToMultiByte
(
CP_ACP
,
0
,
output
,
-
1
,
NULL
,
0
,
NULL
,
NULL
);
if
((
physDev
->
job
.
output
=
HeapAlloc
(
PSDRV_Heap
,
0
,
len
)))
if
((
physDev
->
job
.
output
=
HeapAlloc
(
PSDRV_Heap
,
0
,
len
)))
WideCharToMultiByte
(
CP_ACP
,
0
,
output
,
-
1
,
physDev
->
job
.
output
,
len
,
NULL
,
NULL
);
WideCharToMultiByte
(
CP_ACP
,
0
,
output
,
-
1
,
physDev
->
job
.
output
,
len
,
NULL
,
NULL
);
...
...
Vitaly Lipatov
@lav
mentioned in commit
b1d190d6
·
Aug 16, 2023
mentioned in commit
b1d190d6
mentioned in commit b1d190d66114462df8b2291bb742e12926980756
Toggle commit list
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