diff options
Diffstat (limited to 'platform/windows/gsprint')
-rw-r--r-- | platform/windows/gsprint/gsprint.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/platform/windows/gsprint/gsprint.cpp b/platform/windows/gsprint/gsprint.cpp index 813364a8..4f4a3924 100644 --- a/platform/windows/gsprint/gsprint.cpp +++ b/platform/windows/gsprint/gsprint.cpp @@ -30,7 +30,7 @@ SYMBOL_DECLSPEC int __stdcall ShowPropertiesDialog(void *hptr, void *printername if (!OpenPrinter(output, &hPrinter, NULL)) { - free(output); + delete[] output; return FAIL; } @@ -39,7 +39,7 @@ SYMBOL_DECLSPEC int __stdcall ShowPropertiesDialog(void *hptr, void *printername pDevMode = (LPDEVMODE)malloc(dwNeeded); if (pDevMode == NULL) { - free(output); + delete[] output; ClosePrinter(hPrinter); return FAIL; } @@ -53,7 +53,7 @@ SYMBOL_DECLSPEC int __stdcall ShowPropertiesDialog(void *hptr, void *printername dwRet = DocumentProperties(hWnd, hPrinter, output, pDevMode, NULL, fMode); if (dwRet != IDOK) { - free(output); + delete[] output; ClosePrinter(hPrinter); free(pDevMode); return FAIL; @@ -67,7 +67,7 @@ SYMBOL_DECLSPEC int __stdcall ShowPropertiesDialog(void *hptr, void *printername /* Clean up */ free(pDevMode); - free(output); + delete[] output; ClosePrinter(hPrinter); return 0; } |