Re: Why there's still ONE element left after g_slist_free () ?

2009-05-13 Thread PenT
Thanks to Yeti, tml and Pfeiffer, I finally realized what happend to the
GSList.

May be I'm spoiled by Python, Java that I had the strange SHOULD-BE-NULL
thought, now I know if I need to reuse the GSList* variable,  the first
thing is to assign NULL to it after g_slist_free (),  also surprised
g_slist_length() didn't gave a segmentation fault to me, aha.
___
gtk-list mailing list
gtk-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-list


Why there's still ONE element left after g_slist_free () ?

2009-05-12 Thread PenT
I created a GSList and then free it using g_slist_free (), then I call
g_slist_length() and it return 1, surprising!

I thought after g_slist_free (), the GSList should be empty(NULL), why still
1 left?
___
gtk-list mailing list
gtk-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-list