[gnome-photos/wip/rishi/assert-more: 1/6] application: Be more strict about what is acceptable
- From: Debarshi Ray <debarshir src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-photos/wip/rishi/assert-more: 1/6] application: Be more strict about what is acceptable
- Date: Sun, 14 Mar 2021 17:49:38 +0000 (UTC)
commit 9f64ddd36568236022b4a0743d78820219668cdd
Author: Debarshi Ray <debarshir gnome org>
Date: Sun Mar 14 18:32:19 2021 +0100
application: Be more strict about what is acceptable
https://gitlab.gnome.org/GNOME/gnome-photos/-/merge_requests/179
src/photos-application.c | 6 ++++++
1 file changed, 6 insertions(+)
---
diff --git a/src/photos-application.c b/src/photos-application.c
index 9017fd3e..8549c69b 100644
--- a/src/photos-application.c
+++ b/src/photos-application.c
@@ -3123,6 +3123,9 @@ photos_application_get_miner (PhotosApplication *self, const gchar *provider_typ
GList *l;
GomMiner *ret_val = NULL;
+ g_return_val_if_fail (PHOTOS_IS_APPLICATION (self), NULL);
+ g_return_val_if_fail (provider_type != NULL && provider_type[0] != '\0', NULL);
+
for (l = self->miners; l != NULL; l = l->next)
{
GomMiner *miner = GOM_MINER (l->data);
@@ -3153,6 +3156,7 @@ photos_application_get_miner_files_name (PhotosApplication *self)
GList *
photos_application_get_miners_running (PhotosApplication *self)
{
+ g_return_val_if_fail (PHOTOS_IS_APPLICATION (self), NULL);
return self->miners_running;
}
@@ -3163,6 +3167,8 @@ photos_application_get_scale_factor (PhotosApplication *self)
GList *windows;
gint ret_val = 1;
+ g_return_val_if_fail (PHOTOS_IS_APPLICATION (self), 1);
+
/* We do not use self->main_window to allow widgets to use this
* method while they are being constructed. The widget hierarchy is
* created in PhotosMainWindow:constructed and at that point
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]