diff --git a/capsule/capsule-dlmopen.c b/capsule/capsule-dlmopen.c
index e800ae13ab9277ca631ff9a0c866ae85a3a6e8e0..97c77973bbad52f6df96d1799b2ce528068c9843 100644
--- a/capsule/capsule-dlmopen.c
+++ b/capsule/capsule-dlmopen.c
@@ -1326,7 +1326,6 @@ wrap (const char *name,
     //
     // the utility functions expect an upper bound though so set that to
     // something suitably large:
-    size_t size = SIZE_MAX - base - (ElfW(Addr)) dyn;
     relocation_data_t rdata = { 0 };
 
     rdata.target    = name;
@@ -1361,7 +1360,7 @@ wrap (const char *name,
 
     // install any required wrappers inside the capsule:
     process_pt_dynamic( (void *)start, // offset from phdr to dyn section
-                        size,   //  fake size value (max possible value)
+                        0,      //  fake size value
                         base,   //  address of phdr in memory
                         process_dt_rela,
                         process_dt_rel,
diff --git a/utils/process-pt-dynamic.c b/utils/process-pt-dynamic.c
index 0e0d31334a5b7cffffe9a6b0d15f2923bbce5de4..c84280848958ebb0c0382527ab2164340de1eca7 100644
--- a/utils/process-pt-dynamic.c
+++ b/utils/process-pt-dynamic.c
@@ -84,7 +84,8 @@ find_strtab (ElfW(Addr) base, void *start, size_t size, int *siz)
     const char *tab = NULL;
 
     for( entry = start + base;
-         (entry->d_tag != DT_NULL) && ((void *)entry < (start + base + size));
+         (entry->d_tag != DT_NULL) &&
+           ((size == 0) || ((void *)entry < (start + base + size)));
          entry++ )
     {
         if( entry->d_tag == DT_STRTAB )
@@ -474,7 +475,8 @@ process_pt_dynamic (void *start,
            "strtab is at %p: %s%s", strtab, strtab, strtab ? "…" : "");
 
     for( entry = start + base;
-         (entry->d_tag != DT_NULL) && ((void *)entry < (start + base + size));
+         (entry->d_tag != DT_NULL) &&
+           ((size == 0) || ((void *)entry < (start + base + size)));
          entry++ )
         switch( entry->d_tag )
         {