aboutsummaryrefslogtreecommitdiffstats
path: root/src/gamma-drm.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-05-07 17:52:27 +0200
committerMattias Andrée <maandree@operamail.com>2015-05-07 17:52:27 +0200
commit6954f21fd48b99a57130e25183f46776e97dbc28 (patch)
tree524c0a993e4273bdab59cb786526b62581dfb4db /src/gamma-drm.c
parentFix #174: Use nanosleep() instead of usleep() (diff)
downloadredshift-ng-6954f21fd48b99a57130e25183f46776e97dbc28.tar.gz
redshift-ng-6954f21fd48b99a57130e25183f46776e97dbc28.tar.bz2
redshift-ng-6954f21fd48b99a57130e25183f46776e97dbc28.tar.xz
remove unnecessary null-checks, it is safe to pass NULL to free (per documentation)
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/gamma-drm.c')
-rw-r--r--src/gamma-drm.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gamma-drm.c b/src/gamma-drm.c
index d431395..d15f3f6 100644
--- a/src/gamma-drm.c
+++ b/src/gamma-drm.c
@@ -190,8 +190,7 @@ drm_free(drm_state_t *state)
if (state->crtcs != NULL) {
drm_crtc_state_t *crtcs = state->crtcs;
while (crtcs->crtc_num >= 0) {
- if (crtcs->r_gamma != NULL)
- free(crtcs->r_gamma);
+ free(crtcs->r_gamma);
crtcs->crtc_num = -1;
crtcs++;
}