Commit 1e23e889 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

dbghelp: Check for NULL adt before using it in stabs_pts_read_aggregate.

parent 4cc3ce92
......@@ -652,7 +652,7 @@ static inline int stabs_pts_read_aggregate(struct ParseTypedefData* ptd,
PTS_ABORTIF(ptd, stabs_pts_read_type_def(ptd, NULL, &adt) == -1);
if (doadd)
if (doadd && adt)
{
char tmp[256];
DWORD64 size;
......
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