mirror of
				https://gitlab.alpinelinux.org/alpine/aports.git
				synced 2025-10-31 16:31:40 +01:00 
			
		
		
		
	see: https://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/36722 https://www.openwall.com/lists/musl/2021/07/16/1 https://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/22958
		
			
				
	
	
		
			22 lines
		
	
	
		
			559 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			559 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
| diff --git a/renderdoc/os/posix/linux/linux_callstack.cpp b/renderdoc/os/posix/linux/linux_callstack.cpp
 | |
| index f0b44b0..558765d 100644
 | |
| --- a/renderdoc/os/posix/linux/linux_callstack.cpp
 | |
| +++ b/renderdoc/os/posix/linux/linux_callstack.cpp
 | |
| @@ -27,7 +27,6 @@
 | |
|  #define _GNU_SOURCE
 | |
|  #endif
 | |
|  
 | |
| -#include <execinfo.h>
 | |
|  #include <link.h>
 | |
|  #include <stdio.h>
 | |
|  #include <string.h>
 | |
| @@ -66,7 +65,7 @@ private:
 | |
|    {
 | |
|      void *addrs_ptr[ARRAY_COUNT(addrs)];
 | |
|  
 | |
| -    int ret = backtrace(addrs_ptr, ARRAY_COUNT(addrs));
 | |
| +    int ret = 0;
 | |
|  
 | |
|      numLevels = 0;
 | |
|      if(ret > 0)
 |