diff options
author | slotwin <slotwin@users.noreply.github.com> | 2015-05-25 10:48:37 +0000 |
---|---|---|
committer | slotwin <slotwin@users.noreply.github.com> | 2015-05-25 10:48:37 +0000 |
commit | 0bab5b8df845b10cb0012be9baab1fe24e012c04 (patch) | |
tree | e97f9e3214999284e3bdc72dd862c5aee801c4c5 /plugins/AVS/src/utils.cpp | |
parent | 53bf91d28b743808fad6b2afd2c8820d4dfa79eb (diff) |
AVS:
partly reverts r13335 - clear() is not a full clear, fixes options glitch in #932
minor fix and cleanup
git-svn-id: http://svn.miranda-ng.org/main/trunk@13830 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/AVS/src/utils.cpp')
-rw-r--r-- | plugins/AVS/src/utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/AVS/src/utils.cpp b/plugins/AVS/src/utils.cpp index 0b94ecb461..3014820b81 100644 --- a/plugins/AVS/src/utils.cpp +++ b/plugins/AVS/src/utils.cpp @@ -280,7 +280,7 @@ void protoPicCacheEntry::clear() if (hbmPic != 0)
DeleteObject(hbmPic);
- memset(this, 0, sizeof(protoPicCacheEntry));
+ memset(this, 0, sizeof(avatarCacheEntry));
}
///////////////////////////////////////////////////////////////////////////////////////////////////
|