<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Ge van Geldorp wrote:
<blockquote cite="mid200509200659.j8K6xPdf029224@mailhost.geldorp.nl"
 type="cite">
  <blockquote type="cite">
    <pre wrap="">From: Reuben Perelman

Launching setup.exe on the starcraft CD immediatly causes a BSOD.
    </pre>
  </blockquote>
  <pre wrap=""><!---->
Does the patch below fix this?
  </pre>
</blockquote>
Yes it does.<br>
<blockquote cite="mid200509200659.j8K6xPdf029224@mailhost.geldorp.nl"
 type="cite">
  <pre wrap="">
G&eacute; van Geldorp.

Index: objects/dib.c
===================================================================
--- objects/dib.c       (revision 17937)
+++ objects/dib.c       (working copy)
@@ -847,7 +847,13 @@
   }

   if(usage == DIB_PAL_COLORS)
+  {
     lpRGB = DIB_MapPaletteColors(dc, bmi);
+    if (NULL == lpRGB)
+    {
+      lpRGB = bmi-&gt;bmiColors;
+    }
+  }
   else
     lpRGB = bmi-&gt;bmiColors;


_______________________________________________
Ros-dev mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Ros-dev@reactos.com">Ros-dev@reactos.com</a>
<a class="moz-txt-link-freetext" href="http://reactos.com:8080/mailman/listinfo/ros-dev">http://reactos.com:8080/mailman/listinfo/ros-dev</a>

  </pre>
</blockquote>
<br>
</body>
</html>