summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>2020-06-14 14:00:48 +0100
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>2020-06-14 14:00:48 +0100
commitc4ab23511e342046ba271b985d3fc59a4af34e9b (patch)
tree3c5066e81264d2a87ada811aa49c860dd51740f9
parent1b5d2298554005375adc186113d506dd4181e3e2 (diff)
downloadenlightenment-c4ab23511e342046ba271b985d3fc59a4af34e9b.tar.gz
fix null edid more - found hole missed in last fix
adds more fix on top 80f92ee486dd98ec3b72a1ab3d77f7472f35323e
-rw-r--r--src/bin/e_backlight.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/e_backlight.c b/src/bin/e_backlight.c
index d2f9964a80..cdb2c6a3f4 100644
--- a/src/bin/e_backlight.c
+++ b/src/bin/e_backlight.c
@@ -131,7 +131,7 @@ _backlight_devices_zone_device_find(E_Zone *zone)
id = zone->randr2_id;
if (!id) id = "/";
- tmp = strdup(zone->randr2_id);
+ tmp = strdup(id);
if (!tmp) return NULL;
sep = strchr(tmp, '/');
if (!sep)