[pacman-dev] [PATCH] removed the condition in alpm_db_set_servers since FREELIST is NULL safe

Barbu Paul - Gheorghe barbu.paul.gheorghe at gmail.com
Tue Jul 31 14:51:31 EDT 2012


Signed-off-by: Barbu Paul - Gheorghe <barbu.paul.gheorghe at gmail.com>
---
 lib/libalpm/db.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/libalpm/db.c b/lib/libalpm/db.c
index bf9c3f0..4520fe1 100644
--- a/lib/libalpm/db.c
+++ b/lib/libalpm/db.c
@@ -136,7 +136,7 @@ alpm_list_t SYMEXPORT *alpm_db_get_servers(const alpm_db_t *db)
 int SYMEXPORT alpm_db_set_servers(alpm_db_t *db, alpm_list_t *servers)
 {
 	ASSERT(db != NULL, return -1);
-	if(db->servers) FREELIST(db->servers);
+	FREELIST(db->servers);
 	db->servers = servers;
 	return 0;
 }
-- 
Barbu Paul - Gheorghe
Common sense is not so common - Voltaire
Visit My GitHub profile to see my open-source projects - https://github.com/paullik



More information about the pacman-dev mailing list