1
1
/* macho.c -- Get debug data from an Mach-O file for backtraces.
2
2
Copyright (C) 2012-2016 Free Software Foundation, Inc.
3
3
Written by John Colanduoni.
4
-
4
+
5
5
Pending upstream pull request:
6
6
https://github.com/ianlancetaylor/libbacktrace/pull/2
7
7
@@ -288,7 +288,7 @@ macho_get_commands (struct backtrace_state *state, int descriptor,
288
288
289
289
archs_total_size = arch_count * sizeof (struct fat_arch );
290
290
291
- if (!backtrace_get_view (state , descriptor , sizeof (fat_header ),
291
+ if (!backtrace_get_view (state , descriptor , sizeof (struct fat_header ),
292
292
archs_total_size , error_callback ,
293
293
data , & fat_archs_view ))
294
294
goto end ;
@@ -1361,7 +1361,7 @@ backtrace_initialize (struct backtrace_state *state, int descriptor,
1361
1361
current_vmslide = _dyld_get_image_vmaddr_slide (i );
1362
1362
current_name = _dyld_get_image_name (i );
1363
1363
1364
- if (current_name == NULL )
1364
+ if (current_name == NULL || ( i != 0 && current_vmslide == 0 ) )
1365
1365
continue ;
1366
1366
1367
1367
if (!(current_descriptor =
@@ -1370,16 +1370,15 @@ backtrace_initialize (struct backtrace_state *state, int descriptor,
1370
1370
continue ;
1371
1371
}
1372
1372
1373
- if (! macho_add (state , error_callback , data , current_descriptor ,
1373
+ if (macho_add (state , error_callback , data , current_descriptor ,
1374
1374
current_name , & macho_fileline_fn , current_vmslide ,
1375
1375
& current_found_sym , & current_found_dwarf ))
1376
1376
{
1377
- return 0 ;
1377
+ found_sym = found_sym || current_found_sym ;
1378
+ found_dwarf = found_dwarf || current_found_dwarf ;
1378
1379
}
1379
1380
1380
1381
backtrace_close (current_descriptor , error_callback , data );
1381
- found_sym = found_sym || current_found_sym ;
1382
- found_dwarf = found_dwarf || current_found_dwarf ;
1383
1382
}
1384
1383
1385
1384
if (!state -> threaded )
0 commit comments