Commit b3be3e27 b3be3e2784bcbd0179ad7555e28fbf570777ffef by Alain Magloire

variabke status was not initiialize to 0.

1 parent c9d40113
......@@ -158,7 +158,7 @@ body_lines (body_t body, size_t *plines)
int
body_size (body_t body, size_t *psize)
{
int status;
int status = 0;
if (body == NULL)
return EINVAL;
......