diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2015-12-29 22:45:01 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-12-29 23:01:50 +0100 |
commit | 17668a5c621e54bc0b68dc6638590a587b52bb91 (patch) | |
tree | 44814773e9f8313b74b88e1926978c2338bb8a40 /libftpconn/reply.c | |
parent | 42d04ae6ab017b65c6721dd4e9823c34b3656229 (diff) | |
download | hurd-17668a5c621e54bc0b68dc6638590a587b52bb91.tar.gz hurd-17668a5c621e54bc0b68dc6638590a587b52bb91.tar.bz2 hurd-17668a5c621e54bc0b68dc6638590a587b52bb91.zip |
fix compiler warnings in hurd/libftpconn
Diffstat (limited to 'libftpconn/reply.c')
-rw-r--r-- | libftpconn/reply.c | 4 |
1 files changed, 2 insertions, 2 deletions
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) |