Skip to content
This repository has been archived by the owner on May 21, 2019. It is now read-only.

Commit

Permalink
[msan] Fix a typo.
Browse files Browse the repository at this point in the history
Spotted by Keno Fischer.



git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@200682 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
eugenis committed Feb 3, 2014
1 parent 82b9f88 commit e1c437c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/msan/msan.cc
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,8 @@ void ScopedThreadLocalStateBackup::Restore() {
internal_memset(__msan_va_arg_tls, 0, sizeof(__msan_va_arg_tls));

if (__msan_get_track_origins()) {
internal_memset(&__msan_retval_origin_tls, 0, sizeof(__msan_retval_tls));
internal_memset(&__msan_retval_origin_tls, 0,
sizeof(__msan_retval_origin_tls));
internal_memset(__msan_param_origin_tls, 0,
sizeof(__msan_param_origin_tls));
}
Expand Down

0 comments on commit e1c437c

Please sign in to comment.