diff options
Diffstat (limited to 'src/analysis/db')
-rw-r--r-- | src/analysis/db/misc/rlestr.c | 2 | ||||
-rw-r--r-- | src/analysis/db/server.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/analysis/db/misc/rlestr.c b/src/analysis/db/misc/rlestr.c index d75e7ab..631b1e9 100644 --- a/src/analysis/db/misc/rlestr.c +++ b/src/analysis/db/misc/rlestr.c @@ -331,7 +331,7 @@ bool send_rle_string(const rle_string *str, int fd, int flags) { bool status; /* Bilan d'une opération */ - status = safe_send(fd, (uint32_t []) { htobe32(str->length) }, sizeof(uint32_t), flags); + status = safe_send(fd, (uint32_t []) { htobe32(str->length) }, sizeof(uint32_t), MSG_MORE | flags); if (!status) return false; if (str->length > 0) diff --git a/src/analysis/db/server.c b/src/analysis/db/server.c index 04b0dc4..c51c21e 100644 --- a/src/analysis/db/server.c +++ b/src/analysis/db/server.c @@ -390,7 +390,7 @@ static void *g_db_server_listener(GDbServer *server) if (archive != NULL) error = g_cdb_archive_add_client(archive, fd, &user); - + continue; gdsl_error: |