From: <fac...@us...> - 2006-11-27 12:12:52
|
Revision: 17829 http://svn.sourceforge.net/gaim/?rev=17829&view=rev Author: faceprint Date: 2006-11-27 04:12:43 -0800 (Mon, 27 Nov 2006) Log Message: ----------- this was causing segfaults on my laptop Modified Paths: -------------- trunk/libgaim/tests/tests.h Modified: trunk/libgaim/tests/tests.h =================================================================== --- trunk/libgaim/tests/tests.h 2006-11-27 03:58:00 UTC (rev 17828) +++ trunk/libgaim/tests/tests.h 2006-11-27 12:12:43 UTC (rev 17829) @@ -16,9 +16,9 @@ } #define assert_string_equal_free(expected, actual) { \ - gchar *a = actual; \ - assert_string_equal(expected, a); \ - g_free(a); \ + gchar *b = actual; \ + assert_string_equal(expected, b); \ + g_free(b); \ } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |