Module: wine Branch: master Commit: 79dd34993a4fcb0ffaf166b8ed1307db6b234960 URL: http://source.winehq.org/git/wine.git/?a=commit;h=79dd34993a4fcb0ffaf166b8ed...
Author: Austin English austinenglish@gmail.com Date: Mon Jan 30 22:50:53 2012 -0600
msvcp60: Remove unnecessary assignments (LLVM/Clang).
---
dlls/msvcp60/string.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/msvcp60/string.c b/dlls/msvcp60/string.c index 96e7134..3138d06 100644 --- a/dlls/msvcp60/string.c +++ b/dlls/msvcp60/string.c @@ -1411,7 +1411,7 @@ DEFINE_THISCALL_WRAPPER(basic_string_char_replace_ch, 20) basic_string_char* __thiscall basic_string_char_replace_ch(basic_string_char *this, MSVCP_size_t off, MSVCP_size_t len, MSVCP_size_t count, char ch) { - char *ptr = this->ptr; + char *ptr;
TRACE("%p %ld %ld %ld %c\n", this, off, len, count, ch);
@@ -3107,7 +3107,7 @@ DEFINE_THISCALL_WRAPPER(basic_string_wchar_replace_ch, 20) basic_string_wchar* __thiscall basic_string_wchar_replace_ch(basic_string_wchar *this, MSVCP_size_t off, MSVCP_size_t len, MSVCP_size_t count, wchar_t ch) { - wchar_t *ptr = this->ptr; + wchar_t *ptr;
TRACE("%p %ld %ld %ld %c\n", this, off, len, count, ch);