Commit bde872f9 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

shdocvw: Removed useless array for NULL check (Coverity).

parent c4571e82
......@@ -528,7 +528,7 @@ static LRESULT iewnd_OnNotify(InternetExplorer *This, WPARAM wparam, LPARAM lpar
{
NMCBEENDEDITW* info = (NMCBEENDEDITW*)lparam;
if(info->fChanged && info->iWhy == CBENF_RETURN && info->szText)
if(info->fChanged && info->iWhy == CBENF_RETURN)
{
VARIANT vt;
......
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