Skip to content
This repository has been archived by the owner on Jan 17, 2022. It is now read-only.

Commit

Permalink
Merge pull request #223 from jjd-git/leak-ssl
Browse files Browse the repository at this point in the history
Fix memory leak in writev_all_ssl()
  • Loading branch information
David Pineau committed Jul 28, 2016
2 parents 209ec33 + d38eb13 commit bfdb2bb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions libdroplet/src/conn.c
Expand Up @@ -890,6 +890,8 @@ writev_all_ssl(dpl_conn_t *conn,
free(ptr);
return DPL_FAILURE;
}

free(ptr);
return DPL_SUCCESS;
}

Expand Down

0 comments on commit bfdb2bb

Please sign in to comment.