2002-09-09 Havoc Pennington <hp@pobox.com>

Author: hp
Date: 2002-09-10 02:59:21 GMT
2002-09-09  Havoc Pennington  <hp@pobox.com>

	* pkg.c (fill_list_single_package): fix uninitialized variable,
	patch from Andrea Suatoni
This commit is contained in:
Arch Librarian 2005-07-14 13:05:18 +00:00
parent fcb804effe
commit d2c6c3cccb
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2002-09-09 Havoc Pennington <hp@pobox.com>
* pkg.c (fill_list_single_package): fix uninitialized variable,
patch from Andrea Suatoni
2002-09-06 Havoc Pennington <hp@redhat.com>
* parse.c, pkg.c: handle other_libs other_cflags same

1
pkg.c
View file

@ -561,6 +561,7 @@ fill_list_single_package (Package *pkg, GetListFunc func,
GSList *tmp;
/* Get list of packages */
packages = NULL;
packages = g_slist_append (packages, pkg);
recursive_fill_list (pkg, get_requires, &packages);