hey e_randr... lets not segv on setting up screen eh?

SVN revision: 67700
This commit is contained in:
Carsten Haitzler 2012-02-04 23:01:36 +00:00
parent 6c3a3258f1
commit 60fea9433f
1 changed files with 10 additions and 4 deletions

View File

@ -1600,12 +1600,15 @@ _e_randr_find_matching_crtc(Eina_List *crtcs, E_Randr_Serialized_Crtc *sc)
EINA_LIST_FOREACH (sc->possible_outputs_names, s_name_iter, s_output_name)
{
EINA_LIST_FOREACH (ci->possible_outputs, p_output_iter, oi)
{
if (oi->name)
{
if (!strncmp(s_output_name, oi->name, oi->name_length))
return ci;
}
}
}
}
return NULL;
}
@ -1679,6 +1682,8 @@ _e_randr_restore_12_policies(E_Randr_Screen_Info_12 *si_12)
EINA_LIST_FOREACH(si_12->outputs, iter, output)
{
EINA_LIST_FOREACH(e_config->randr_serialized_setup->serialized_outputs_policies, iter2, sop)
{
if (output->name)
{
if (strncmp(sop->name, output->name, sop->name_length) == 0)
{
@ -1687,6 +1692,7 @@ _e_randr_restore_12_policies(E_Randr_Screen_Info_12 *si_12)
}
}
}
}
Eina_Bool
_e_randr_try_restore_12(E_Randr_Screen_Info_12 *si_12)