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) ...@@ -158,7 +158,7 @@ body_lines (body_t body, size_t *plines)
158 int 158 int
159 body_size (body_t body, size_t *psize) 159 body_size (body_t body, size_t *psize)
160 { 160 {
161 int status; 161 int status = 0;
162 if (body == NULL) 162 if (body == NULL)
163 return EINVAL; 163 return EINVAL;
164 164
......