<html>
    <head>
      <base href="https://bugs.freedesktop.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Intel driver crashes after switching between fullscreen and windowed mode on RetroArch"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=93844#c20">Comment # 20</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Intel driver crashes after switching between fullscreen and windowed mode on RetroArch"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=93844">bug 93844</a>
              from <span class="vcard"><a class="email" href="mailto:chris@chris-wilson.co.uk" title="Chris Wilson <chris@chris-wilson.co.uk>"> <span class="fn">Chris Wilson</span></a>
</span></b>
        <pre>Gone over the possible settings of info->signal to true when info->draw ==
NULL, and think I have found the last missing piece:

diff --git a/src/sna/sna_dri2.c b/src/sna/sna_dri2.c
index f2f4908..045b12d 100644
--- a/src/sna/sna_dri2.c
+++ b/src/sna/sna_dri2.c
@@ -2787,6 +2787,9 @@ sna_dri2_flip_continue(struct sna_dri2_event *info)
        info->type = info->flip_continue;
        info->flip_continue = 0;

+       if (info->draw == NULL)
+               return false;
+
        if (info->sna->mode.front_active == 0)
                return false;</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the assignee for the bug.</li>
          <li>You are the QA Contact for the bug.</li>
          <li>You are on the CC list for the bug.</li>
      </ul>
    </body>
</html>