diff options
author | John Reiser <jreiser@BitWagon.com> | 2011-03-16 08:23:42 -0700 |
---|---|---|
committer | William Cohen <wcohen@redhat.com> | 2011-03-22 09:48:47 -0400 |
commit | d74568b3585c7090ab25939f333b94d72ca3dd71 (patch) | |
tree | 1ba252a21b642251f4c8d00907ce48083ee98483 /backtrace-symbols.c | |
parent | 51a3033fa1dc443da470e2d1425eb50a1395b36a (diff) | |
download | memstomp-d74568b3585c7090ab25939f333b94d72ca3dd71.tar.gz memstomp-d74568b3585c7090ab25939f333b94d72ca3dd71.tar.xz memstomp-d74568b3585c7090ab25939f333b94d72ca3dd71.zip |
Replace alloca() with c99 or gcc extension variable-length arrays.
Diffstat (limited to 'backtrace-symbols.c')
-rw-r--r-- | backtrace-symbols.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/backtrace-symbols.c b/backtrace-symbols.c index 018879d..ff91bea 100644 --- a/backtrace-symbols.c +++ b/backtrace-symbols.c @@ -45,7 +45,6 @@ #define false 0 #define _GNU_SOURCE -#include <alloca.h> #include <string.h> #include <stdio.h> #include <stdlib.h> @@ -324,7 +323,7 @@ char **backtrace_symbols(void /*const*/ *const *const vector, int const length) int const stack_depth = length - 1; int total = 0; - char ***const locations = alloca(sizeof(char **) * (stack_depth+1)); + char **locations[1+ stack_depth]; /* c99 or gcc extension */ bfd_init(); int x; |