We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef456a8 commit b2e160aCopy full SHA for b2e160a
src/deemon/execute/modpath.c
@@ -580,7 +580,7 @@ DeeModule_InitDexBounds(DeeModuleObject *__restrict self) {
580
data.iddmmiwld_mod = self;
581
self->mo_minaddr = (byte_t const *)-1;
582
self->mo_maxaddr = (byte_t const *)0;
583
- (void)dl_iterate_phdr(&initialize_dexdata_minmax_iterate_with_linkmap_cb, (void *)self);
+ (void)dl_iterate_phdr(&initialize_dexdata_minmax_iterate_with_linkmap_cb, (void *)&data);
584
if likely(self->mo_minaddr <= self->mo_maxaddr)
585
return true;
586
Dee_DPRINTF("[RT] Warning: Failed to dl_iterate_phdr()-with-link_map-find module %q", self->mo_absname);
0 commit comments