Commit d2beb725 authored by Alexandre Julliard's avatar Alexandre Julliard

shlwapi/tests: Don't write uninitialized data.

This avoids a compiler warning.
parent d5756ff8
...@@ -567,7 +567,7 @@ static void test_IStream_Read(void) ...@@ -567,7 +567,7 @@ static void test_IStream_Read(void)
static void test_IStream_Write(void) static void test_IStream_Write(void)
{ {
struct dummystream streamobj; struct dummystream streamobj;
char buff[256]; char buff[256] = {0};
HRESULT hRet; HRESULT hRet;
if (!pIStream_Write) if (!pIStream_Write)
......
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