-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Attached is a small patch to fix a seg. fault in ecore_x. This causes my
enlightenment DR17 compile to seg. fault every time it attempts to draw
the border of a window.
Kind regards,
Søren Bøg
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org
iD8DBQFCvIroiVIK3crItH4RApjRAJ96MbMboqsXWylsn8oj9qG8E9po/ACfTGBN
2s8WzYWL8xXrzz7gPOrimt0=
=d1NE
-----END PGP SIGNATURE-----
--- ecore_x_window_prop.c.orig 2005-06-24 23:55:00.000000000 +0200
+++ ecore_x_window_prop.c 2005-06-24 23:57:36.000000000 +0200
@@ -242,7 +242,7 @@ ecore_x_window_prop_string_get(Ecore_X_W
if (XGetTextProperty(_ecore_x_disp, win, &xtp, type))
{
int items;
- char **list;
+ char **list = NULL;
Status s;
if (xtp.encoding == ECORE_X_ATOM_UTF8_STRING)