Fixed missing NULL pointer check.

This commit is contained in:
Armin Novak 2014-12-07 00:33:37 +01:00
parent 23d64bd6ca
commit 6b2790774e
1 changed files with 4 additions and 2 deletions

View File

@ -522,8 +522,10 @@ int cliprdr_client_format_list(CliprdrClientContext* context, CLIPRDR_FORMAT_LIS
if (formatNameSize > 15)
formatNameSize = 15;
Stream_Write(s, wszFormatName, formatNameSize * 2);
if (wszFormatName)
Stream_Write(s, wszFormatName, formatNameSize * 2);
Stream_Zero(s, 32 - (formatNameSize * 2));
free(wszFormatName);