2010-05-12 09:33:22 -04:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2017-04-20 09:10:04 -04:00
|
|
|
* Copyright (C) 2010 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2010-05-12 09: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-02 18:19:02 -05:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2010-05-12 09: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 13:06:49 -05:00
|
|
|
#include "curl_setup.h"
|
2010-05-19 10:26:08 -04:00
|
|
|
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "strdup.h"
|
|
|
|
#include "fileinfo.h"
|
2010-06-02 08:13:02 -04:00
|
|
|
#include "curl_memory.h"
|
|
|
|
/* The last #include file should be: */
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "memdebug.h"
|
2010-06-02 08:13:02 -04:00
|
|
|
|
2017-04-20 09:10:04 -04:00
|
|
|
struct fileinfo *Curl_fileinfo_alloc(void)
|
2010-05-12 09:33:22 -04:00
|
|
|
{
|
2017-04-20 09:10:04 -04:00
|
|
|
return calloc(1, sizeof(struct fileinfo));
|
2010-05-12 09:33:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void Curl_fileinfo_dtor(void *user, void *element)
|
|
|
|
{
|
2017-04-20 09:10:04 -04:00
|
|
|
struct fileinfo *finfo = element;
|
2010-05-12 09:33:22 -04:00
|
|
|
(void) user;
|
|
|
|
if(!finfo)
|
|
|
|
return;
|
|
|
|
|
2017-04-20 09:10:04 -04:00
|
|
|
Curl_safefree(finfo->info.b_data);
|
2010-05-12 09:33:22 -04:00
|
|
|
|
|
|
|
free(finfo);
|
|
|
|
}
|