Skip to content

Commit

Permalink
Make sure rv is not used uninitialised.
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1836235 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
minfrin committed Jul 18, 2018
1 parent 549635f commit 117be8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/sockperf.c
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ static apr_status_t runTest(struct testSet *ts, struct testResult *res,
apr_pool_t *pool)
{
char *buffer;
apr_status_t rv;
apr_status_t rv = APR_SUCCESS;
int i;
apr_size_t sz = ts->size * TEST_SIZE;

Expand Down

0 comments on commit 117be8f

Please sign in to comment.