We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2acdf9 commit 95d1408Copy full SHA for 95d1408
pwnlib/libcdb.py
@@ -291,6 +291,10 @@ def unstrip_libc(filename):
291
log.warn_once('Given libc does not have a buildid. Cannot look for debuginfo to unstrip.')
292
return False
293
294
+ if libc.debuginfo:
295
+ log.debug('Given libc already contains debug information. Skipping unstrip.')
296
+ return True
297
+
298
log.debug('Trying debuginfod servers: %r', DEBUGINFOD_SERVERS)
299
300
for server_url in DEBUGINFOD_SERVERS:
0 commit comments