winspool.drv: Avoid converting garbage if there was no DEVMODE passed in.
This commit is contained in:
parent
08bade6880
commit
aa0cc00b48
|
@ -2410,7 +2410,7 @@ LONG WINAPI DocumentPropertiesW(HWND hWnd, HANDLE hPrinter,
|
||||||
if(ret < 0) return ret;
|
if(ret < 0) return ret;
|
||||||
pDevModeOutputA = HeapAlloc(GetProcessHeap(), 0, ret);
|
pDevModeOutputA = HeapAlloc(GetProcessHeap(), 0, ret);
|
||||||
}
|
}
|
||||||
pDevModeInputA = DEVMODEdupWtoA(pDevModeInput);
|
pDevModeInputA = (fMode & DM_IN_BUFFER) ? DEVMODEdupWtoA(pDevModeInput) : NULL;
|
||||||
ret = DocumentPropertiesA(hWnd, hPrinter, pDeviceNameA, pDevModeOutputA,
|
ret = DocumentPropertiesA(hWnd, hPrinter, pDeviceNameA, pDevModeOutputA,
|
||||||
pDevModeInputA, fMode);
|
pDevModeInputA, fMode);
|
||||||
if(pDevModeOutput) {
|
if(pDevModeOutput) {
|
||||||
|
|
Loading…
Reference in New Issue