summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2015-07-17 15:59:23 -0400
committerMatthias Clasen <mclasen@redhat.com>2015-07-17 16:17:02 -0400
commitf333df93941b33daef6d71856ac1b3b9115f9e17 (patch)
tree453c36fcdc1b5c20630cb064d8b84b191b1c26a4
parent90dde24d6a79725c674d65677f998f1a45e21598 (diff)
downloadgtk+-f333df93941b33daef6d71856ac1b3b9115f9e17.tar.gz
testdialog: Error out if templates are missing
Coverity complained about us ignoring the return value here, and it is nicer to get an error message about this.
-rw-r--r--tests/testdialog.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/testdialog.c b/tests/testdialog.c
index 3c955074d5..df36f0fc28 100644
--- a/tests/testdialog.c
+++ b/tests/testdialog.c
@@ -215,7 +215,9 @@ my_dialog_class_init (MyDialogClass *class)
gsize size;
GBytes *bytes;
- g_file_get_contents ("mydialog.ui", &buffer, &size, NULL);
+ if (!g_file_get_contents ("mydialog.ui", &buffer, &size, NULL))
+ g_error ("Template file mydialog.ui not found");
+
bytes = g_bytes_new_static (buffer, size);
gtk_widget_class_set_template (GTK_WIDGET_CLASS (class), bytes);
g_bytes_unref (bytes);
@@ -283,7 +285,9 @@ my_dialog2_class_init (MyDialog2Class *class)
gsize size;
GBytes *bytes;
- g_file_get_contents ("mydialog2.ui", &buffer, &size, NULL);
+ if (!g_file_get_contents ("mydialog2.ui", &buffer, &size, NULL))
+ g_error ("Template file mydialog2.ui not found");
+
bytes = g_bytes_new_static (buffer, size);
gtk_widget_class_set_template (GTK_WIDGET_CLASS (class), bytes);
g_bytes_unref (bytes);