From fd9ed1b9c38c69cee80ca7a09709cdd68e09987c Mon Sep 17 00:00:00 2001 From: Andreas Frisch Date: Mon, 10 Apr 2017 20:36:22 +0200 Subject: [PATCH] free upload strings --- photobooth.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/photobooth.c b/photobooth.c index f75af1c..55fef66 100644 --- a/photobooth.c +++ b/photobooth.c @@ -361,6 +361,10 @@ static void photo_booth_dispose (GObject *object) g_free (priv->cam_icc_profile); g_free (priv->overlay_image); g_free (priv->save_path_template); + g_free (priv->facebook_put_uri); + g_free (priv->imgur_album_id); + g_free (priv->imgur_access_token); + g_free (priv->imgur_description); g_hash_table_destroy (G_strings_table); G_strings_table = NULL; g_mutex_clear (&priv->processing_mutex);