diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2015-11-11 23:05:36 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2015-11-11 23:05:36 (GMT) |
commit | 355a7140932b77d351bc6ddd965608b0011af855 (patch) | |
tree | f297872a2a33e0617d5fad0c85d00871f1482b06 /src/analysis/db | |
parent | 0727204e36e919f06e80181482981c3f19669d76 (diff) |
Fixed most of the warnings about use of uninitialized data.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@607 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/analysis/db')
-rw-r--r-- | src/analysis/db/server.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/analysis/db/server.c b/src/analysis/db/server.c index 3ef1ce0..3107231 100644 --- a/src/analysis/db/server.c +++ b/src/analysis/db/server.c @@ -249,12 +249,12 @@ static void *g_db_server_listener(GDbServer *server) char source[INET6_ADDRSTRLEN]; /* Adresse du client (IPv4/6) */ const char *ip; /* Statut de la conversion */ DBError error; /* Validation de la connexion */ + GCdbArchive *archive; /* Destinataire final du client*/ uint32_t cmd; /* Commande initiale lue */ uint32_t version; /* Version du client lue */ rle_string hash; /* Empreinte du binaire visé */ rle_string user; /* Nom d'utilisateur du client */ GList *iter; /* Boucle de parcours */ - GCdbArchive *archive; /* Destinataire final du client*/ fds.fd = server->fd; fds.events = POLLIN | POLLPRI; @@ -285,6 +285,7 @@ static void *g_db_server_listener(GDbServer *server) } error = DBE_NONE; + archive = NULL; /** * Le premier "paquet" reçu de la part d'un client doit contenir les informations suivantes : |