23 Jan
2007
23 Jan
'07
8:31 a.m.
On Mon, Jan 22, 2007 at 05:30:50PM -0600, Aaron Griffin wrote:
On 1/22/07, James Rosten <seinfeld90@gmail.com> wrote:
-Ss is most definitely broken.
Internal pacman error: Segmentation fault Please submit a full bug report, with the given package if appropriate.
Probably something I introduced with the alpm_list_t migration. I'll fix this tonight.
You removed the "empty list assertion" in alpm_list_getdata, which prevented the dereference of NULL pointers? void *alpm_list_getdata(const pmlist_t *entry) { ASSERT(entry != NULL, return(NULL)); return(entry->data); } Jürgen