diff options
author | Matthew Hodgson <matthew@matrix.org> | 2016-10-02 02:50:52 +0100 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2016-10-02 02:50:52 +0100 |
commit | 38acc352a3f3aac40c132e5321da540da38c832e (patch) | |
tree | df35101a1260577962aee63a7c4e396307f36bfd /python/olm/account.py | |
parent | 68ec41f8ca731b8e9335dbfd691b8339f030ee4d (diff) |
fix missing ctypes function signatures
These missing signatures were causing OSX to truncate 64-bit pointers
to 32-bit pointers when calling the missing methods, causing segfaults
Diffstat (limited to 'python/olm/account.py')
-rw-r--r-- | python/olm/account.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/olm/account.py b/python/olm/account.py index 7673329..3fa1049 100644 --- a/python/olm/account.py +++ b/python/olm/account.py @@ -41,6 +41,7 @@ account_function(lib.olm_account_one_time_keys_length) account_function(lib.olm_account_one_time_keys, c_void_p, c_size_t) account_function(lib.olm_account_mark_keys_as_published) account_function(lib.olm_account_max_number_of_one_time_keys) +account_function(lib.olm_pickle_account_length) account_function( lib.olm_account_generate_one_time_keys_random_length, c_size_t |