Commit d328f90b authored by Simon Giesecke's avatar Simon Giesecke

Problem: inadequate recv variant used which assumes 0-terminated string

Solution: use array recv variant instead
parent a5ee4fb0
...@@ -138,8 +138,8 @@ int test_blocking (int send_hwm_, int msg_cnt_, const char *endpoint) ...@@ -138,8 +138,8 @@ int test_blocking (int send_hwm_, int msg_cnt_, const char *endpoint)
// Wait before starting TX operations till 1 subscriber has subscribed // Wait before starting TX operations till 1 subscriber has subscribed
// (in this test there's 1 subscriber only) // (in this test there's 1 subscriber only)
const char subscription_to_all_topics[] = {1, 0}; const uint8_t subscription_to_all_topics[] = {1};
recv_string_expect_success (pub_socket, subscription_to_all_topics, 0); recv_array_expect_success (pub_socket, subscription_to_all_topics, 0);
// Send until we block // Send until we block
int send_count = 0; int send_count = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment