diff options
author | Mattias Andrée <maandree@kth.se> | 2021-03-08 00:21:02 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-03-08 00:21:02 +0100 |
commit | b058098fdcc5d4ed9b81fdb17f64820c0360ad48 (patch) | |
tree | e39e5f547b900922775d466507c29b352f046a53 /libgamma_dummy_site_restore.c | |
parent | misc (diff) | |
download | libgamma-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.c | 2 |
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; |