2010-05-12 17:33:22 +04:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2019-05-05 18:08:21 +03:00
|
|
|
* Copyright (C) 2010 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2010-05-12 17:33:22 +04:00
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2016-02-03 02:19:02 +03:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2010-05-12 17:33:22 +04:00
|
|
|
*
|
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
|
|
|
|
2013-01-06 22:06:49 +04:00
|
|
|
#include "curl_setup.h"
|
2019-05-05 18:08:21 +03:00
|
|
|
#ifndef CURL_DISABLE_FTP
|
2013-01-04 05:50:28 +04:00
|
|
|
#include "strdup.h"
|
|
|
|
#include "fileinfo.h"
|
2010-06-02 16:13:02 +04:00
|
|
|
#include "curl_memory.h"
|
|
|
|
/* The last #include file should be: */
|
2013-01-04 05:50:28 +04:00
|
|
|
#include "memdebug.h"
|
2010-06-02 16:13:02 +04:00
|
|
|
|
2017-04-20 16:10:04 +03:00
|
|
|
struct fileinfo *Curl_fileinfo_alloc(void)
|
2010-05-12 17:33:22 +04:00
|
|
|
{
|
2017-04-20 16:10:04 +03:00
|
|
|
return calloc(1, sizeof(struct fileinfo));
|
2010-05-12 17:33:22 +04:00
|
|
|
}
|
|
|
|
|
2018-04-19 16:47:05 +03:00
|
|
|
void Curl_fileinfo_cleanup(struct fileinfo *finfo)
|
2010-05-12 17:33:22 +04:00
|
|
|
{
|
|
|
|
if(!finfo)
|
|
|
|
return;
|
|
|
|
|
2017-04-20 16:10:04 +03:00
|
|
|
Curl_safefree(finfo->info.b_data);
|
2010-05-12 17:33:22 +04:00
|
|
|
free(finfo);
|
|
|
|
}
|
2019-05-05 18:08:21 +03:00
|
|
|
#endif
|