Commit 4b30ece8 authored by Thomas Fitzsimmons's avatar Thomas Fitzsimmons Committed by Alexandre Julliard

dbghelp: Recognize DT_GNU_HASH.

parent d05fabb6
......@@ -1041,7 +1041,11 @@ static unsigned is_dt_flag_valid(unsigned d_tag)
#ifndef DT_EXTRANUM
#define DT_EXTRANUM 0
#endif
#ifndef DT_GNU_HASH
#define DT_GNU_HASH 0x6ffffef5
#endif
return (d_tag >= 0 && d_tag < DT_NUM + DT_PROCNUM + DT_EXTRANUM)
|| (d_tag == DT_GNU_HASH)
#if defined(DT_LOOS) && defined(DT_HIOS)
|| (d_tag >= DT_LOOS && d_tag < DT_HIOS)
#endif
......
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