[tor-commits] [tor/maint-0.2.7] ... and fix the linux backtrace_symbols{, _fd} calls
nickm at torproject.org
nickm at torproject.org
Wed Dec 16 14:07:07 UTC 2015
commit e0aa4f837c62d1b6df37bba071023ec24f3191cc
Author: Nick Mathewson <nickm at torproject.org>
Date: Wed Dec 16 08:20:53 2015 -0500
... and fix the linux backtrace_symbols{,_fd} calls
---
src/common/backtrace.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/common/backtrace.c b/src/common/backtrace.c
index 8d544ed..bed0442 100644
--- a/src/common/backtrace.c
+++ b/src/common/backtrace.c
@@ -96,7 +96,7 @@ log_backtrace(int severity, int domain, const char *msg)
tor_mutex_acquire(&cb_buf_mutex);
depth = backtrace(cb_buf, MAX_DEPTH);
- symbols = backtrace_symbols(cb_buf, depth);
+ symbols = backtrace_symbols(cb_buf, (int)depth);
tor_log(severity, domain, "%s. Stack trace:", msg);
if (!symbols) {
@@ -139,7 +139,7 @@ crash_handler(int sig, siginfo_t *si, void *ctx_)
n_fds = tor_log_get_sigsafe_err_fds(&fds);
for (i=0; i < n_fds; ++i)
- backtrace_symbols_fd(cb_buf, depth, fds[i]);
+ backtrace_symbols_fd(cb_buf, (int)depth, fds[i]);
abort();
}
@@ -175,7 +175,7 @@ install_bt_handler(void)
* reads won't be denied by the sandbox code */
char **symbols;
size_t depth = backtrace(cb_buf, MAX_DEPTH);
- symbols = backtrace_symbols(cb_buf, depth);
+ symbols = backtrace_symbols(cb_buf, (int) depth);
if (symbols)
free(symbols);
}
More information about the tor-commits
mailing list