diff --git a/src/modules/conf_randr/e_smart_monitor.c b/src/modules/conf_randr/e_smart_monitor.c index 686096a1f..aa78dcc0e 100644 --- a/src/modules/conf_randr/e_smart_monitor.c +++ b/src/modules/conf_randr/e_smart_monitor.c @@ -228,11 +228,13 @@ e_smart_monitor_crtc_set(Evas_Object *obj, E_Randr_Crtc_Info *crtc) /* record the current rotation */ sd->orientation = crtc->current_orientation; sd->rotation = _e_smart_monitor_rotation_get(sd->orientation); - sd->mode = crtc->current_mode; - if ((sd->mode->hTotal) && (sd->mode->vTotal)) - sd->rate = (int)((float)sd->mode->dotClock / - ((float)sd->mode->hTotal * (float)sd->mode->vTotal)); + if ((sd->mode = crtc->current_mode)) + { + if ((sd->mode->hTotal) && (sd->mode->vTotal)) + sd->rate = (int)((float)sd->mode->dotClock / + ((float)sd->mode->hTotal * (float)sd->mode->vTotal)); + } EINA_LIST_FOREACH(crtc->outputs, l, output) {