Commit a3aad9d8 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

winspool: Initialize string pointers passed to StartDocDlgW() (Coverity).

parent c28816cc
......@@ -8556,7 +8556,7 @@ end:
LPSTR WINAPI StartDocDlgA( HANDLE hPrinter, DOCINFOA *doc )
{
UNICODE_STRING usBuffer;
DOCINFOW docW;
DOCINFOW docW = { 0 };
LPWSTR retW;
LPWSTR docnameW = NULL, outputW = NULL, datatypeW = NULL;
LPSTR ret = NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment