aboutsummaryrefslogtreecommitdiffstats
path: root/libgamma_dummy_site_restore.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-03-08 00:21:02 +0100
committerMattias Andrée <maandree@kth.se>2021-03-08 00:21:02 +0100
commitb058098fdcc5d4ed9b81fdb17f64820c0360ad48 (patch)
treee39e5f547b900922775d466507c29b352f046a53 /libgamma_dummy_site_restore.c
parentmisc (diff)
downloadlibgamma-b058098fdcc5d4ed9b81fdb17f64820c0360ad48.tar.gz
libgamma-b058098fdcc5d4ed9b81fdb17f64820c0360ad48.tar.bz2
libgamma-b058098fdcc5d4ed9b81fdb17f64820c0360ad48.tar.xz
m + style fix + check memory allocation overflows
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r--libgamma_dummy_site_restore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgamma_dummy_site_restore.c b/libgamma_dummy_site_restore.c
index 0e8a7a5..97db77c 100644
--- a/libgamma_dummy_site_restore.c
+++ b/libgamma_dummy_site_restore.c
@@ -23,7 +23,7 @@ libgamma_dummy_site_restore(struct libgamma_site_state *restrict this)
for (j = 0; j < data->partition_count; j++)
for (i = 0; i < data->partitions[j].crtc_count; i++)
- if (libgamma_dummy_internal_crtc_restore_forced(data->partitions[j].crtcs + i) < 0)
+ if (libgamma_dummy_internal_crtc_restore_forced(data->partitions[j].crtcs + i))
return -1;
return 0;