gnome-games r8124 - in trunk: . libgames-support



Author: thomashpa
Date: Mon Oct 20 21:59:35 2008
New Revision: 8124
URL: http://svn.gnome.org/viewvc/gnome-games?rev=8124&view=rev

Log:
Add comment so others don't waste time chasing this warning. Also bumping version

Modified:
   trunk/configure.in
   trunk/libgames-support/games-files.c

Modified: trunk/configure.in
==============================================================================
--- trunk/configure.in	(original)
+++ trunk/configure.in	Mon Oct 20 21:59:35 2008
@@ -5,7 +5,7 @@
 m4_define([gnome_games_branch],["trunk"])
 
 AC_PREREQ([2.53])
-AC_INIT([GNOME Games], [2.24.0],
+AC_INIT([GNOME Games], [2.25.1],
   [http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-games],
   [gnome-games])
 

Modified: trunk/libgames-support/games-files.c
==============================================================================
--- trunk/libgames-support/games-files.c	(original)
+++ trunk/libgames-support/games-files.c	Mon Oct 20 21:59:35 2008
@@ -166,11 +166,13 @@
   gchar **suffices;
   gchar **suffix;
 
+  /* Results in strict-aliasing warning due to glib bug #316221 */
   g_static_mutex_lock (&image_suffix_mutex);
 
   /* This check needs to be inside the lock to make sure that another
    * thread haasn't half-completed the list. */
   if (image_suffix_list) {
+    /* Results in strict-aliasing warning due to glib bug #316221 */
     g_static_mutex_unlock (&image_suffix_mutex);
     return;
   }
@@ -199,6 +201,7 @@
 
   g_slist_free (pixbuf_formats);
 
+  /* Results in strict-aliasing warning due to glib bug #316221 */
   g_static_mutex_unlock (&image_suffix_mutex);
 }
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]