diff options
author | Dima Kogan <dima@secretsauce.net> | 2014-05-21 03:47:33 -0700 |
---|---|---|
committer | Chanho Park <chanho61.park@samsung.com> | 2014-08-22 20:38:26 +0900 |
commit | d5232406664fdc51640eeba8f0e49f26275921df (patch) | |
tree | dae013446ba070970bfac8e9c32c1576979411f2 /library.c | |
parent | e29618826afbca88e505ade97763ffed04b073c3 (diff) | |
download | ltrace-d5232406664fdc51640eeba8f0e49f26275921df.tar.gz ltrace-d5232406664fdc51640eeba8f0e49f26275921df.tar.bz2 ltrace-d5232406664fdc51640eeba8f0e49f26275921df.zip |
Making sure to not double-examine the same DWARF CU
Diffstat (limited to 'library.c')
-rw-r--r-- | library.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -296,7 +296,7 @@ private_library_init(struct library *lib, enum library_type type) lib->type = type; #if defined(HAVE_LIBDW) - lib->dwfl = NULL; + lib->dwfl_module = NULL; #endif } |