aboutsummaryrefslogtreecommitdiff
path: root/src/util/disk.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/disk.c')
-rw-r--r--src/util/disk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/disk.c b/src/util/disk.c
index 9018aa955..cdead59d2 100644
--- a/src/util/disk.c
+++ b/src/util/disk.c
@@ -1556,8 +1556,8 @@ GNUNET_DISK_pipe_from_fd (int blocking_read, int blocking_write, int fd[2])
1556 GNUNET_break (0 == close (p->fd[0]->fd)); 1556 GNUNET_break (0 == close (p->fd[0]->fd));
1557 if (p->fd[1]->fd >= 0) 1557 if (p->fd[1]->fd >= 0)
1558 GNUNET_break (0 == close (p->fd[1]->fd)); 1558 GNUNET_break (0 == close (p->fd[1]->fd));
1559 GNUNET_free_non_null (p->fd[0]); 1559 GNUNET_free (p->fd[0]);
1560 GNUNET_free_non_null (p->fd[1]); 1560 GNUNET_free (p->fd[1]);
1561 GNUNET_free (p); 1561 GNUNET_free (p);
1562 errno = eno; 1562 errno = eno;
1563 return NULL; 1563 return NULL;