From c5946ebea51a4eb70f66ca3de0312ac6205b1be9 Mon Sep 17 00:00:00 2001 From: jstebbins Date: Wed, 19 Feb 2014 00:13:07 +0000 Subject: [PATCH] LinGui: fix potential use of uninitialized variable git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6047 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- gtk/src/callbacks.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/src/callbacks.c b/gtk/src/callbacks.c index 32a1e5b9e..60f95ba19 100644 --- a/gtk/src/callbacks.c +++ b/gtk/src/callbacks.c @@ -1575,7 +1575,7 @@ update_crop_info(signal_user_data_t *ud) { GtkWidget *widget; gchar *text; - gint width, height, crop[4]; + gint width, height, crop[4] = {0,}; gint titleindex; hb_title_t *title; -- 2.40.0