Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
matrix-org
Olm
Commits
90c55806
Commit
90c55806
authored
Jan 05, 2017
by
ylecollen
Browse files
fix an invalid test
parent
9df5dd9c
Changes
1
Show whitespace changes
Inline
Side-by-side
java/android/OlmLibSdk/olm-sdk/src/main/jni/olm_outbound_group_session.cpp
View file @
90c55806
...
...
@@ -69,7 +69,7 @@ JNIEXPORT jlong OLM_OUTBOUND_GROUP_SESSION_FUNC_DEF(createNewSessionJni)(JNIEnv
{
LOGE
(
" ## createNewSessionJni(): failure - outbound group session size = 0"
);
}
else
if
(
!
(
sessionPtr
=
(
OlmOutboundGroupSession
*
)
malloc
(
sessionSize
)))
else
if
((
sessionPtr
=
(
OlmOutboundGroupSession
*
)
malloc
(
sessionSize
)))
{
sessionPtr
=
olm_outbound_group_session
(
sessionPtr
);
LOGD
(
" ## createNewSessionJni(): success - outbound group session size=%lu"
,
static_cast
<
long
unsigned
int
>
(
sessionSize
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment