1
0
mirror of https://github.com/golang/go synced 2024-10-02 18:18:33 -06:00

runtime: fix windows build

#ifdef'ed out code wasn't updated for argp change.

TBR=iant
CC=golang-codereviews
https://golang.org/cl/139040043
This commit is contained in:
Russ Cox 2014-09-01 17:36:45 -04:00
parent fa5f86281e
commit 60be96217d

View File

@ -132,7 +132,7 @@ runtime·gentraceback(uintptr pc0, uintptr sp0, uintptr lr0, G *gp, int32 skip,
// Invoke callback so that stack copier sees an uncopyable frame.
if(callback != nil) {
frame.continpc = frame.pc;
frame.argp = nil;
frame.argp = 0;
frame.arglen = 0;
if(!callback(&frame, v))
return n;