00001 /*************************************************************************** 00002 * _ _ ____ _ 00003 * Project ___| | | | _ \| | 00004 * / __| | | | |_) | | 00005 * | (__| |_| | _ <| |___ 00006 * \___|\___/|_| \_\_____| 00007 * 00008 * Copyright (C) 2010 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al. 00009 * 00010 * This software is licensed as described in the file COPYING, which 00011 * you should have received as part of this distribution. The terms 00012 * are also available at https://curl.haxx.se/docs/copyright.html. 00013 * 00014 * You may opt to use, copy, modify, merge, publish, distribute and/or sell 00015 * copies of the Software, and permit persons to whom the Software is 00016 * furnished to do so, under the terms of the COPYING file. 00017 * 00018 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 00019 * KIND, either express or implied. 00020 * 00021 ***************************************************************************/ 00022 00023 #include "curl_setup.h" 00024 00025 #include "strdup.h" 00026 #include "fileinfo.h" 00027 #include "curl_memory.h" 00028 /* The last #include file should be: */ 00029 #include "memdebug.h" 00030 00031 struct curl_fileinfo *Curl_fileinfo_alloc(void) 00032 { 00033 struct curl_fileinfo *tmp = malloc(sizeof(struct curl_fileinfo)); 00034 if(!tmp) 00035 return NULL; 00036 memset(tmp, 0, sizeof(struct curl_fileinfo)); 00037 return tmp; 00038 } 00039 00040 void Curl_fileinfo_dtor(void *user, void *element) 00041 { 00042 struct curl_fileinfo *finfo = element; 00043 (void) user; 00044 if(!finfo) 00045 return; 00046 00047 Curl_safefree(finfo->b_data); 00048 00049 free(finfo); 00050 }