From 7cbc8b3a10e3cfd67b3bc4102c6b8fb95dc06f29 Mon Sep 17 00:00:00 2001 From: Matthias Vogelgesang Date: Tue, 21 Oct 2014 09:55:24 +0200 Subject: Fix printing non-existent error This caused a segfault when unreffing a camera object which was still recording but stopping it was not failing. --- src/uca-camera.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/uca-camera.c b/src/uca-camera.c index 9c90f1a..ef5f671 100644 --- a/src/uca-camera.c +++ b/src/uca-camera.c @@ -283,11 +283,14 @@ uca_camera_dispose (GObject *object) priv = UCA_CAMERA_GET_PRIVATE (object); if (priv->is_recording) { - GError *error; + GError *error = NULL; uca_camera_stop_recording (UCA_CAMERA (object), &error); - g_warning ("Could not stop recording: %s", error->message); - g_error_free (error); + + if (error != NULL) { + g_warning ("Could not stop recording: %p", error->message); + g_error_free (error); + } } if (priv->ring_buffer != NULL) { -- cgit v1.2.3