• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /***************************************************************************
2  *                                  _   _ ____  _
3  *  Project                     ___| | | |  _ \| |
4  *                             / __| | | | |_) | |
5  *                            | (__| |_| |  _ <| |___
6  *                             \___|\___/|_| \_\_____|
7  *
8  * Copyright (C) 1998 - 2018, Daniel Stenberg, <daniel@haxx.se>, et al.
9  *
10  * This software is licensed as described in the file COPYING, which
11  * you should have received as part of this distribution. The terms
12  * are also available at https://curl.haxx.se/docs/copyright.html.
13  *
14  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15  * copies of the Software, and permit persons to whom the Software is
16  * furnished to do so, under the terms of the COPYING file.
17  *
18  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19  * KIND, either express or implied.
20  *
21  ***************************************************************************/
22 
23 #include "curl_setup.h"
24 
25 #include "wildcard.h"
26 #include "llist.h"
27 #include "fileinfo.h"
28 /* The last 3 #include files should be in this order */
29 #include "curl_printf.h"
30 #include "curl_memory.h"
31 #include "memdebug.h"
32 
fileinfo_dtor(void * user,void * element)33 static void fileinfo_dtor(void *user, void *element)
34 {
35   (void)user;
36   Curl_fileinfo_cleanup(element);
37 }
38 
Curl_wildcard_init(struct WildcardData * wc)39 CURLcode Curl_wildcard_init(struct WildcardData *wc)
40 {
41   Curl_llist_init(&wc->filelist, fileinfo_dtor);
42   wc->state = CURLWC_INIT;
43 
44   return CURLE_OK;
45 }
46 
Curl_wildcard_dtor(struct WildcardData * wc)47 void Curl_wildcard_dtor(struct WildcardData *wc)
48 {
49   if(!wc)
50     return;
51 
52   if(wc->dtor) {
53     wc->dtor(wc->protdata);
54     wc->dtor = ZERO_NULL;
55     wc->protdata = NULL;
56   }
57   DEBUGASSERT(wc->protdata == NULL);
58 
59   Curl_llist_destroy(&wc->filelist, NULL);
60 
61 
62   free(wc->path);
63   wc->path = NULL;
64   free(wc->pattern);
65   wc->pattern = NULL;
66 
67   wc->customptr = NULL;
68   wc->state = CURLWC_INIT;
69 }
70