Skip to content

Commit

Permalink
oleview: Remove superflous NULL check (Coverity).
Browse files Browse the repository at this point in the history
  • Loading branch information
msmeissn authored and julliard committed Jun 14, 2011
1 parent 27c9a61 commit 024ab0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion programs/oleview/typelib.c
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ static int EnumEnums(ITypeInfo *pTypeInfo, int cVars, HTREEITEM hParent)
AddToStrW(wszText, wszSpace);
AddToStrW(wszText, bstrName);
AddToStrW(wszText, wszAfter);
if (bstrName) AddToTLDataStrW(tld, bstrName);
AddToTLDataStrW(tld, bstrName);
AddToTLDataStrW(tld, wszAfter);
if (i<cVars-1)
AddToTLDataStrW(tld, wszComa);
Expand Down

0 comments on commit 024ab0c

Please sign in to comment.