diff options
author | Quentin Rameau <quinq@fifth.space> | 2017-04-29 14:34:02 +0200 |
---|---|---|
committer | Quentin Rameau <quinq@fifth.space> | 2017-04-29 14:34:02 +0200 |
commit | db7922f173b803d14039f286146c949ded1538cb (patch) | |
tree | 03c3ddf0a3f93c6294cb074ad077846a92ea5b6e /surf.c | |
parent | 0d1e670ac3e6a5ea02ff1c6a6e64263b425aef9c (diff) |
Free temporary certificate in setcert
Diffstat (limited to 'surf.c')
-rw-r--r-- | surf.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -789,6 +789,7 @@ setcert(Client *c, const char *uri) webkit_web_context_allow_tls_certificate_for_host( webkit_web_view_get_context(c->view), cert, host); + g_object_unref(cert); free(host); } |