--- libaitmqtt/src/aitmqtt.c 2012/04/07 21:02:48 1.1.1.1.2.4 +++ libaitmqtt/src/aitmqtt.c 2012/04/25 13:49:15 1.1.1.1.2.5 @@ -3,7 +3,7 @@ * by Michael Pounov * * $Author: misho $ -* $Id: aitmqtt.c,v 1.1.1.1.2.4 2012/04/07 21:02:48 misho Exp $ +* $Id: aitmqtt.c,v 1.1.1.1.2.5 2012/04/25 13:49:15 misho Exp $ * ************************************************************************** The ELWIX and AITNET software is distributed under the following @@ -174,7 +174,7 @@ mqtt_msgRealloc(mqtt_msg_t * __restrict msg, u_short l if (!msg) return -1; - if (len == msg->msg_len) + if (len <= msg->msg_len) return len; p = realloc(msg->msg_base, len);