Revert "ftplistparser: keep state between invokes"

This reverts commit abbc8457d8.

Caused fuzzer problems on travis not seen when this was a PR!
This commit is contained in:
Daniel Stenberg 2018-04-24 08:19:54 +02:00
parent a7df35ce21
commit 5c39ccd83f
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
5 changed files with 32 additions and 43 deletions

View file

@ -7,7 +7,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
* Copyright (C) 2010 - 2018, Daniel Stenberg, <daniel@haxx.se>, et al.
* Copyright (C) 2010, 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@ -31,6 +31,7 @@ struct fileinfo {
};
struct fileinfo *Curl_fileinfo_alloc(void);
void Curl_fileinfo_cleanup(struct fileinfo *finfo);
void Curl_fileinfo_dtor(void *, void *);
#endif /* HEADER_CURL_FILEINFO_H */