Any progress ont he SDL_FillRect bug?

I’d try and track this one down myself if I could get Visual Studio to compile a working SDL DLL, but it doesn’t. Until then, I’m at a bit of an impasse. SDL_FillRect is a piece of basic functionality that I use all over in my code. But so far nobody’s even acknowledged my bug report on it. Does anyone have any information that might be helpful?

Yikes! Which bug is it?On Wed, Feb 25, 2009 at 6:35 PM, Mason Wheeler wrote:

I’d try and track this one down myself if I could get Visual Studio to compile a working SDL DLL, but it doesn’t. ?Until then, I’m at a bit of an impasse. ?SDL_FillRect is a piece of basic functionality that I use all over in my code. ?But so far nobody’s even acknowledged my bug report on it. ?Does anyone have any information that might be helpful?


http://codebad.com/

Hello !

I’d try and track this one down myself if I could get Visual

Studio to compile a working SDL DLL, but it doesn’t.

Until then, I’m at a bit of an impasse. SDL_FillRect

is a piece of basic functionality that I use all over in my code.

But so far nobody’s even acknowledged my bug report on it.

Does anyone have any information that might be helpful?

Do you mean the bugreport in this email ?

http://lists.libsdl.org/htdig.cgi/sdl-libsdl.org/2009-February/068801.html

CU

Yep, that’s the one!>----- Original Message ----

From: Torsten Giebl
Subject: Re: [SDL] Any progress ont he SDL_FillRect bug?

Hello !

I’d try and track this one down myself if I could get Visual
Studio to compile a working SDL DLL, but it doesn’t.
Until then, I’m at a bit of an impasse. SDL_FillRect
is a piece of basic functionality that I use all over in my code.
But so far nobody’s even acknowledged my bug report on it.
Does anyone have any information that might be helpful?

Do you mean the bugreport in this email ?
http://lists.libsdl.org/htdig.cgi/sdl-libsdl.org/2009-February/068801.html

Is there a bugzilla entry? Is there a C program to reproduce the crash?On Wed, Feb 25, 2009 at 8:58 PM, Mason Wheeler wrote:

Yep, that’s the one!


http://codebad.com/

Using the following code, I was unable to reproduce the crash with
neither SDL 1.2.11 nor SDL 1.3 HEAD rev 4446

#include <SDL.h>
int main(int argc, char **argv) {
SDL_putenv(“SDL_VIDEODRIVER=dummy”);
if (SDL_Init(SDL_INIT_VIDEO) || !SDL_SetVideoMode(1, 1, 32, 0)) {
puts(“error”);
return -1;
}
SDL_Quit();
puts(“bye”);
return 0;
}On Thu, Feb 26, 2009 at 2:10 PM, Donny Viszneki <@Donny_Viszneki> wrote:

Is there a bugzilla entry? Is there a C program to reproduce the crash?


http://codebad.com/