Corrected the array size (cough, cough). Pointed out by

2001-09-25  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* gthread-impl.c: Corrected the array size (cough, cough). Pointed
	out by gpablo@intersystems.com.ar. Fixes #61065.
This commit is contained in:
Sebastian Wilhelmi 2001-09-25 07:17:50 +00:00 committed by Sebastian Wilhelmi
parent 1c8de25a5e
commit e29682d0ad
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2001-09-25 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gthread-impl.c: Corrected the array size (cough, cough). Pointed
out by gpablo@intersystems.com.ar. Fixes #61065.
2001-09-25 Tor Lillqvist <tml@iki.fi>
* Makefile.am: Use new macros for .def file, and check for

View File

@ -38,7 +38,7 @@
#include <glib.h>
static gboolean thread_system_already_initialized = FALSE;
static gint g_thread_priority_map [G_THREAD_PRIORITY_URGENT];
static gint g_thread_priority_map [G_THREAD_PRIORITY_URGENT + 1];
#include G_THREAD_SOURCE