Skip to content
Snippets Groups Projects
Verified Commit f4e8f2f9 authored by Martin Petráček's avatar Martin Petráček
Browse files

fix topic composing

parent 050c1320
No related merge requests found
......@@ -117,8 +117,9 @@ void handle_message(MQTTClient client, zmsg_t *msg, char *topic_buf,
CHECK_ERR(topic_len >= MAX_TOPIC_LEN, "ignoring too long topic %.*s\n",
topic_len, topic_data);
char *topic_buf_pos = topic_buf + topic_prefix_len;
strncpy(topic_buf_pos, topic_data + TOPIC_PREFIX_LEN, topic_len);
topic_buf_pos[topic_len] = 0;
strncpy(topic_buf_pos, topic_data + TOPIC_PREFIX_LEN,
topic_len - TOPIC_PREFIX_LEN);
topic_buf_pos[topic_len - TOPIC_PREFIX_LEN] = 0;
unsigned long compress_len = COMPRESS_BUF_SIZE;
int rc = compress2(compress_buf, &compress_len, zframe_data(payload),
zframe_size(payload), COMPRESS_LEVEL);
......
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