diff options
author | Sander Vrijders <sander.vrijders@ugent.be> | 2017-03-26 16:04:54 +0000 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@ugent.be> | 2017-03-26 16:04:54 +0000 |
commit | 7ee6dadd39f3d4b5874d23bfcdcdd66eb195124e (patch) | |
tree | 43abd2084831d5a36c88a8ad93b3dec3e48127cd /src/ipcpd/normal/fmgr.c | |
parent | 0a75074b15f66a60496d196c0759d33afa3c8b18 (diff) | |
parent | 572013b92d82e78ef5e5b19d79316ae3131c71af (diff) | |
download | ouroboros-7ee6dadd39f3d4b5874d23bfcdcdd66eb195124e.tar.gz ouroboros-7ee6dadd39f3d4b5874d23bfcdcdd66eb195124e.zip |
Merged in sandervrijders/ouroboros/be-pointer (pull request #425)
ipcpd: normal: Fix compilation issue
Diffstat (limited to 'src/ipcpd/normal/fmgr.c')
-rw-r--r-- | src/ipcpd/normal/fmgr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipcpd/normal/fmgr.c b/src/ipcpd/normal/fmgr.c index d2966d0c..a8a9ba58 100644 --- a/src/ipcpd/normal/fmgr.c +++ b/src/ipcpd/normal/fmgr.c @@ -494,7 +494,7 @@ int fmgr_np1_alloc(int fd, return -1; } - free(buf->data); + free(buf.data); fmgr.np1_fd_to_cep_id[fd] = cep_id; fmgr.np1_cep_id_to_fd[cep_id] = fd; |