variabke status was not initiialize to 0.
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -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 | ... | ... |
-
Please register or sign in to post a comment