[pacman-dev] [PATCH 1/3] fixed coding standard violation
Barbu Paul - Gheorghe
barbu.paul.gheorghe at gmail.com
Tue Jul 31 14:24:29 EDT 2012
Signed-off-by: Barbu Paul - Gheorghe <barbu.paul.gheorghe at gmail.com>
---
lib/libalpm/db.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/lib/libalpm/db.c b/lib/libalpm/db.c
index bf9c3f0..63d18be 100644
--- a/lib/libalpm/db.c
+++ b/lib/libalpm/db.c
@@ -136,8 +136,13 @@ 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);
+
+ if(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