Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed many valgrind errors. But, I broke testdyngl.
Browse files Browse the repository at this point in the history
  • Loading branch information
pendletonrc committed Mar 6, 2008
1 parent ba17f4d commit dffd962
Show file tree
Hide file tree
Showing 5 changed files with 64 additions and 14 deletions.
11 changes: 8 additions & 3 deletions src/video/x11/SDL_x11events.c
Expand Up @@ -51,10 +51,15 @@ X11_DispatchEvent(_THIS)
}

data = NULL;
for (i = 0; i < videodata->numwindows; ++i) {
if (videodata->windowlist[i]->window == xevent.xany.window) {
data = videodata->windowlist[i];
if (videodata &&
videodata->windowlist) {
for (i = 0; i < videodata->numwindows; ++i) {
if ((videodata->windowlist[i] != NULL) &&
(videodata->windowlist[i]->window == xevent.xany.window)) {
data = videodata->windowlist[i];
break;
}
}
}
if (!data) {
return;
Expand Down
2 changes: 1 addition & 1 deletion src/video/x11/SDL_x11keyboard.c
Expand Up @@ -330,7 +330,7 @@ X11_InitKeyboard(_THIS)
}
}
if (j == SDL_arraysize(fingerprint)) {
printf("Using scancode set %d\n", i);
/* printf("Using scancode set %d\n", i); */
SDL_memcpy(&data->key_layout[min_keycode], scancode_set[i].table,
sizeof(SDL_scancode) * scancode_set[i].table_size);
fingerprint_detected = SDL_TRUE;
Expand Down
2 changes: 1 addition & 1 deletion src/video/x11/SDL_x11opengl.c
Expand Up @@ -254,7 +254,7 @@ X11_GL_InitExtensions(_THIS)
_this->gl_data->glXDestroyContext(display, context);
}
XDestroyWindow(display, w);
/* X11_PumpEvents(_this); */ /* can't do that because the windowlist may be inconsitent at this point */
X11_PumpEvents(_this);
}

static int
Expand Down
12 changes: 6 additions & 6 deletions src/video/x11/SDL_x11video.c
Expand Up @@ -120,14 +120,14 @@ X11_CreateDevice(int devindex)

/* Initialize all variables that we clean on shutdown */
device = (SDL_VideoDevice *) SDL_calloc(1, sizeof(SDL_VideoDevice));
if (device) {
data = (struct SDL_VideoData *) SDL_calloc(1, sizeof(SDL_VideoData));
if (!device) {
SDL_OutOfMemory();
return NULL;
}
if (!device || !data) {
data = (struct SDL_VideoData *) SDL_calloc(1, sizeof(SDL_VideoData));
if (!data) {
SDL_OutOfMemory();
if (device) {
SDL_free(device);
}
SDL_free(device);
return NULL;
}
device->driverdata = data;
Expand Down
51 changes: 48 additions & 3 deletions src/video/x11/SDL_x11window.c
Expand Up @@ -35,9 +35,11 @@ SetupWindowData(_THIS, SDL_Window * window, Window w, BOOL created)
SDL_WindowData *data;
int numwindows = videodata->numwindows;
SDL_WindowData **windowlist = videodata->windowlist;
int i;
int index;

/* Allocate the window data */
data = (SDL_WindowData *) SDL_malloc(sizeof(*data));
data = (SDL_WindowData *) SDL_calloc(1, sizeof(*data));
if (!data) {
SDL_OutOfMemory();
return -1;
Expand All @@ -56,6 +58,33 @@ SetupWindowData(_THIS, SDL_Window * window, Window w, BOOL created)
data->created = created;
data->videodata = videodata;

/* Associate the data with the window */
index = -1;
if (windowlist) {
for (i = 0; i < numwindows; ++i) {
if (windowlist[i] == NULL) {
index = i;
break;
}
}
}

if (index >= 0) {
windowlist[index] = data;
} else {
windowlist =
(SDL_WindowData **) SDL_realloc(windowlist,
(numwindows + 1) * sizeof(*windowlist));
if (!windowlist) {
SDL_OutOfMemory();
SDL_free(data);
return -1;
}
windowlist[numwindows++] = data;
videodata->numwindows = numwindows;
videodata->windowlist = windowlist;
}

/* Fill in the SDL window with the window data */
{
XWindowAttributes attrib;
Expand Down Expand Up @@ -458,6 +487,7 @@ X11_CreateWindow(_THIS, SDL_Window * window)
}
#endif
XDestroyWindow(data->display, w);
X11_PumpEvents(_this);
return -1;
}
return 0;
Expand Down Expand Up @@ -625,9 +655,24 @@ void
X11_DestroyWindow(_THIS, SDL_Window * window)
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
window->driverdata = NULL;

if (data) {
Display *display = data->videodata->display;
SDL_VideoData *videodata = (SDL_VideoData *) data->videodata;
Display *display = videodata->display;
int numwindows = videodata->numwindows;
SDL_WindowData **windowlist = videodata->windowlist;
int i;

if (windowlist) {
for (i = 0; i < numwindows; ++i) {
if (windowlist[i] &&
(windowlist[i]->windowID == window->id)) {
windowlist[i] = NULL;
break;
}
}
}
#ifdef SDL_VIDEO_OPENGL_GLX
if (window->flags & SDL_WINDOW_OPENGL) {
X11_GL_Shutdown(_this);
Expand All @@ -640,9 +685,9 @@ X11_DestroyWindow(_THIS, SDL_Window * window)
#endif
if (data->created) {
XDestroyWindow(display, data->window);
X11_PumpEvents(_this);
}
SDL_free(data);
window->driverdata = NULL;
}
}

Expand Down

0 comments on commit dffd962

Please sign in to comment.