From 17668a5c621e54bc0b68dc6638590a587b52bb91 Mon Sep 17 00:00:00 2001 From: Flavio Cruz Date: Tue, 29 Dec 2015 22:45:01 +0100 Subject: fix compiler warnings in hurd/libftpconn --- libftpconn/reply.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libftpconn/reply.c') diff --git a/libftpconn/reply.c b/libftpconn/reply.c index d39cdb02..a3eb4cf3 100644 --- a/libftpconn/reply.c +++ b/libftpconn/reply.c @@ -151,8 +151,8 @@ ftp_conn_get_raw_reply (struct ftp_conn *conn, int *reply, do { - const char *l; - size_t len; + const char *l = NULL; + size_t len = 0; error_t err = ftp_conn_getline (conn, &l, &len); if (err) -- cgit v1.2.3