* lib/vasnprintf.c (divide): Just call
free (x) instead of doing ‘if (x != NULL) free (x);’.
+2022-05-01 Paul Eggert <eggert@cs.ucla.edu>
+
+ vasnprintf: Simplify a free() call.
+ * lib/vasnprintf.c (divide): Just call
+ free (x) instead of doing ‘if (x != NULL) free (x);’.
+
2022-04-30 Bruno Haible <bruno@clisp.org>
string: Avoid syntax error on glibc systems with GCC 11.
q_ptr[q_len++] = 1;
}
keep_q:
- if (tmp_roomptr != NULL)
- free (tmp_roomptr);
+ free (tmp_roomptr);
q->limbs = q_ptr;
q->nlimbs = q_len;
return roomptr;