mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
lib/gdi32/misc/stubsa.c: fixed uninitialized pointer ( lpszDescriptionW ) in GetEnhMetaFileDescription()
svn path=/trunk/; revision=5209
This commit is contained in:
parent
5c1018772c
commit
8b57be1bf4
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: stubsa.c,v 1.16 2003/07/21 19:05:52 royce Exp $
|
||||
/* $Id: stubsa.c,v 1.17 2003/07/21 19:21:48 royce Exp $
|
||||
*
|
||||
* reactos/lib/gdi32/misc/stubs.c
|
||||
*
|
||||
|
@ -737,7 +737,7 @@ GetEnhMetaFileDescriptionA(
|
|||
{
|
||||
HANDLE hHeap;
|
||||
NTSTATUS Status;
|
||||
LPWSTR lpszDescriptionW;
|
||||
LPWSTR lpszDescriptionW = NULL;
|
||||
UINT rc;
|
||||
|
||||
if ( lpszDescription && cchBuffer )
|
||||
|
|
Loading…
Reference in a new issue