diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-03-17 10:39:37 +0100 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-03-17 10:39:37 +0100 |
commit | 7747528435d77ad055a5c3124a89717e42807b9a (patch) | |
tree | 1b13d3833029a2bdab59ad287fa44eb762f82994 /include | |
parent | 788414c1a728440e25b8a7428af294189e3b70ca (diff) | |
download | ouroboros-7747528435d77ad055a5c3124a89717e42807b9a.tar.gz ouroboros-7747528435d77ad055a5c3124a89717e42807b9a.zip |
lib, irmd: Fix memleaks
This removes some memleaks present in the sockets layer. It also fixes
the bad initialization of the difs_size param in the irm_msg.
Diffstat (limited to 'include')
-rw-r--r-- | include/ouroboros/sockets.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/ouroboros/sockets.h b/include/ouroboros/sockets.h index b34537a7..871e3c36 100644 --- a/include/ouroboros/sockets.h +++ b/include/ouroboros/sockets.h @@ -51,7 +51,9 @@ struct irm_msg { int client_socket_open(char * file_name); int server_socket_open(char * file_name); +/* Caller has to free the buffer */ buffer_t * serialize_irm_msg(struct irm_msg * msg); +/* Caller has to free all the allocated fields in the message */ struct irm_msg * deserialize_irm_msg(buffer_t * data); #endif |