From e095f78432381666a0465755ff62ad6e70fa1c68 Mon Sep 17 00:00:00 2001 From: Daniel Wyatt Date: Wed, 26 Apr 2017 11:19:05 -0400 Subject: Add explicit return to FFI botan_mp_to_str. This way we know if the buffer is insufficient. --- src/tests/test_ffi.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/tests') diff --git a/src/tests/test_ffi.cpp b/src/tests/test_ffi.cpp index 48d7c28c4..d5ddace04 100644 --- a/src/tests/test_ffi.cpp +++ b/src/tests/test_ffi.cpp @@ -780,6 +780,9 @@ class FFI_Unit_Tests : public Test TEST_FFI_OK(botan_mp_to_str, (r, 10, str_buf, &str_len)); result.test_eq("botan_mp_mod_mul", std::string(str_buf), "123945920473931248854653259523111998693"); + str_len = 0; + TEST_FFI_RC(BOTAN_FFI_ERROR_INSUFFICIENT_BUFFER_SPACE, botan_mp_to_str, (r, 10, str_buf, &str_len)); + size_t x_bytes; botan_mp_rand_bits(x, rng, 512); TEST_FFI_OK(botan_mp_num_bytes, (x, &x_bytes)); -- cgit v1.2.3