diff options
author | Vanilla I. Shu <vanilla@FreeBSD.org> | 2010-05-18 03:15:47 +0000 |
---|---|---|
committer | Vanilla I. Shu <vanilla@FreeBSD.org> | 2010-05-18 03:15:47 +0000 |
commit | ea367d63953ae410db95f96fd30195c19149abac (patch) | |
tree | b292701e43c6704ffe4129b818200048fcee3fe0 /www/node/files/patch-v8_platform-freebsd.cc | |
parent | Update for version 2.27 (diff) |
Upgrade to 0.1.95.
Approved by: maintainer
Notes
Notes:
svn path=/head/; revision=254518
Diffstat (limited to 'www/node/files/patch-v8_platform-freebsd.cc')
-rw-r--r-- | www/node/files/patch-v8_platform-freebsd.cc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/www/node/files/patch-v8_platform-freebsd.cc b/www/node/files/patch-v8_platform-freebsd.cc new file mode 100644 index 000000000000..ccef3517979f --- /dev/null +++ b/www/node/files/patch-v8_platform-freebsd.cc @@ -0,0 +1,11 @@ +--- deps/v8/src/platform-freebsd.cc.orig 2010-05-18 11:11:48.000000000 +0800 ++++ deps/v8/src/platform-freebsd.cc 2010-05-18 11:12:00.000000000 +0800 +@@ -290,7 +290,7 @@ int OS::StackWalk(Vector<OS::StackFrame> + + int frames_count = backtrace(addresses.start(), frames_size); + +- char** symbols = backtrace_symbols(addresses, frames_count); ++ char** symbols = backtrace_symbols(addresses.start(), frames_count); + if (symbols == NULL) { + return kStackWalkError; + } |