Skip to content

Commit

Permalink
Plugins: FastCGI: fix unitialized variable on on_read callback (CID 1…
Browse files Browse the repository at this point in the history
…312111)

Signed-off-by: Eduardo Silva <eduardo@monkey.io>
  • Loading branch information
edsiper committed Jul 23, 2015
1 parent f05a8c4 commit a680478
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/fastcgi/fcgi_handler.c
Expand Up @@ -485,7 +485,7 @@ int fcgi_error(struct fcgi_handler *handler)
int cb_fastcgi_on_read(void *data)
{
int n;
int ret;
int ret = 0;
int avail;
char *body;
size_t offset;
Expand Down

0 comments on commit a680478

Please sign in to comment.