forked from OSchip/llvm-project
[compiler-rt][obvious] fix typo, delete paren
I should've deleted a parenthesis on line 4222 in https://reviews.llvm.org/D108843 and this patch fixes it. Differential Revision: https://reviews.llvm.org/D108852
This commit is contained in:
parent
012b664b2e
commit
4dde7064e7
|
@ -4219,7 +4219,7 @@ INTERCEPTOR(char **, backtrace_symbols, void **buffer, int size) {
|
|||
if (res && size) {
|
||||
COMMON_INTERCEPTOR_WRITE_RANGE(ctx, res, size * sizeof(*res));
|
||||
for (int i = 0; i < size; ++i)
|
||||
COMMON_INTERCEPTOR_WRITE_RANGE(ctx, res[i], internal_strlen(res[i])) + 1);
|
||||
COMMON_INTERCEPTOR_WRITE_RANGE(ctx, res[i], internal_strlen(res[i]) + 1);
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue