wildcard.c 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2017, 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. #include "curl_setup.h"
  23. #include "wildcard.h"
  24. #include "llist.h"
  25. #include "fileinfo.h"
  26. /* The last 3 #include files should be in this order */
  27. #include "curl_printf.h"
  28. #include "curl_memory.h"
  29. #include "memdebug.h"
  30. CURLcode Curl_wildcard_init(struct WildcardData *wc)
  31. {
  32. Curl_llist_init(&wc->filelist, Curl_fileinfo_dtor);
  33. wc->state = CURLWC_INIT;
  34. return CURLE_OK;
  35. }
  36. void Curl_wildcard_dtor(struct WildcardData *wc)
  37. {
  38. if(!wc)
  39. return;
  40. if(wc->tmp_dtor) {
  41. wc->tmp_dtor(wc->tmp);
  42. wc->tmp_dtor = ZERO_NULL;
  43. wc->tmp = NULL;
  44. }
  45. DEBUGASSERT(wc->tmp == NULL);
  46. Curl_llist_destroy(&wc->filelist, NULL);
  47. free(wc->path);
  48. wc->path = NULL;
  49. free(wc->pattern);
  50. wc->pattern = NULL;
  51. wc->customptr = NULL;
  52. wc->state = CURLWC_INIT;
  53. }