aboutsummaryrefslogtreecommitdiff
path: root/src/olm.cpp
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2019-10-04 11:43:40 +0100
committerDavid Baker <dave@matrix.org>2019-10-04 11:43:40 +0100
commitb482321213e6e896d0981c266bed12f4e1f67441 (patch)
treeea8decd8eb2187ee049a2a3587ee28a2730c25fe /src/olm.cpp
parente73a208fb2b70fb5d195a74956f22ea6557d361f (diff)
Pass in a buffer to olm_session_describe
instead of having a static one, as that could end up taking up a lot of memory if your app keeps olm sessions hanging about.
Diffstat (limited to 'src/olm.cpp')
-rw-r--r--src/olm.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/olm.cpp b/src/olm.cpp
index 65e506d..0333b10 100644
--- a/src/olm.cpp
+++ b/src/olm.cpp
@@ -535,10 +535,10 @@ int olm_session_has_received_message(
return from_c(session)->received_message;
}
-const char * olm_session_describe(
- OlmSession * session
+void olm_session_describe(
+ OlmSession * session, char *buf, size_t buflen
) {
- return from_c(session)->describe();
+ from_c(session)->describe(buf, buflen);
}
size_t olm_matches_inbound_session(