diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-08-07 18:58:42 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-08-07 18:58:42 +0100 |
commit | a4b2927884ded37556ea5009e10fffe12d8a6706 (patch) | |
tree | fb1fede1c6cd2cb04cba27c92716901145080ced /tests/test_olm_decrypt.cpp | |
parent | 76ecd85c2cf4b9b1fb2350774d24860537d1d571 (diff) |
Initialise the length fields of the reader struct in decode_message, even if the message is invalid, fixes a crash where the message was too short
Diffstat (limited to 'tests/test_olm_decrypt.cpp')
-rw-r--r-- | tests/test_olm_decrypt.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_olm_decrypt.cpp b/tests/test_olm_decrypt.cpp index f089665..3f2a994 100644 --- a/tests/test_olm_decrypt.cpp +++ b/tests/test_olm_decrypt.cpp @@ -3,7 +3,8 @@ const char * test_cases[] = { "41776f", - "7fff6f0101346d671201" + "7fff6f0101346d671201", + "ee776f41496f674177804177778041776f6716670a677d6f670a67c2677d", }; |