Commit a7c98960 a7c98960f0bd0e362e28ec03693b28256584884f by Sergey Poznyakoff

(msgset_negate): Fix loop break condition.

1 parent bf897eed
......@@ -445,7 +445,7 @@ msgset_negate (msgset_t *set)
size_t i;
msgset_t *first = NULL, *last = NULL;
for (i = 1; i < total; i++)
for (i = 1; i <= total; i++)
{
if (!msgset_member (set, i))
{
......