Fix incorrect string termination.

pull/139/head
Roger A. Light 11 years ago
parent 0ddd438161
commit b8f9aeb1a8

@ -149,7 +149,7 @@ int _mosquitto_send_publish(struct mosquitto *mosq, uint16_t mid, const char *to
return MOSQ_ERR_NOMEM; return MOSQ_ERR_NOMEM;
} }
snprintf(topic_temp, len, "%s%s", cur_topic->remote_prefix, mapped_topic); snprintf(topic_temp, len, "%s%s", cur_topic->remote_prefix, mapped_topic);
cur_topic->remote_prefix[len] = '\0'; topic_temp[len] = '\0';
_mosquitto_free(mapped_topic); _mosquitto_free(mapped_topic);
mapped_topic = topic_temp; mapped_topic = topic_temp;
} }

Loading…
Cancel
Save