aboutsummaryrefslogtreecommitdiff
path: root/src/outbound_group_session.c
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2016-05-20 12:35:59 +0100
committerRichard van der Hoff <richard@matrix.org>2016-05-24 13:40:21 +0100
commitfa1e9446ac2b4d26dd592813ce0a372565df4c93 (patch)
treed236c87d22e5ac748f158b2a4ccb99c1951583d8 /src/outbound_group_session.c
parent173cbe112c139de0bd1a69dce5a03db360dc5abc (diff)
Use _olm_unset instead of memset
memset is at risk of being optimised away, so use _olm_unset instead.
Diffstat (limited to 'src/outbound_group_session.c')
-rw-r--r--src/outbound_group_session.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/outbound_group_session.c b/src/outbound_group_session.c
index fadf949..cf7d32c 100644
--- a/src/outbound_group_session.c
+++ b/src/outbound_group_session.c
@@ -22,6 +22,7 @@
#include "olm/cipher.h"
#include "olm/error.h"
#include "olm/megolm.h"
+#include "olm/memory.h"
#include "olm/message.h"
#include "olm/pickle.h"
#include "olm/pickle_encoding.h"
@@ -63,7 +64,7 @@ const char *olm_outbound_group_session_last_error(
size_t olm_clear_outbound_group_session(
OlmOutboundGroupSession *session
) {
- memset(session, 0, sizeof(OlmOutboundGroupSession));
+ _olm_unset(session, sizeof(OlmOutboundGroupSession));
return sizeof(OlmOutboundGroupSession);
}