diff -r 368d10817c19 libgo/runtime/go-callers.c --- a/libgo/runtime/go-callers.c Wed Jan 30 14:00:04 2013 -0800 +++ b/libgo/runtime/go-callers.c Thu Jan 31 08:38:26 2013 -0800 @@ -43,8 +43,14 @@ loc = &arg->locbuf[arg->index]; loc->pc = pc; - loc->filename = runtime_gostring ((const byte *) filename); - loc->function = runtime_gostring ((const byte *) function); + + /* The libbacktrace library says that these strings might disappear, + but with the current implementation they won't. We can't easily + allocate memory here, so for now assume that we can save a + pointer to the strings. */ + loc->filename = runtime_gostringnocopy ((const byte *) filename); + loc->function = runtime_gostringnocopy ((const byte *) function); + loc->lineno = lineno; ++arg->index; return arg->index >= arg->max;