Commit 30c1df4a authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

dbghelp: Add a missing NULL check (Coverity).

parent df0ef756
......@@ -1034,6 +1034,7 @@ static BOOL sym_enum(HANDLE hProcess, ULONG64 BaseOfDll, PCSTR Mask,
regex_t mod_regex, sym_regex;
pair.pcs = process_find_by_handle(hProcess);
if (!pair.pcs) return FALSE;
if (BaseOfDll == 0)
{
/* do local variables ? */
......
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