diff options
Diffstat (limited to 'src/extractors/extractor.c')
-rw-r--r-- | src/extractors/extractor.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/extractors/extractor.c b/src/extractors/extractor.c index c38c1f2..06d52a5 100644 --- a/src/extractors/extractor.c +++ b/src/extractors/extractor.c @@ -12,10 +12,10 @@ Site_map site_map = {{{"www.bilibili.com", SITE_BILIBILI}, 3}; void options_cleanup(Options *options) { - free_and_nullify(options->URL); - free_and_nullify(options->path); - free_and_nullify(options->query); - free_and_nullify(options->pagedata); + FREE_AND_NULLIFY(options->URL); + FREE_AND_NULLIFY(options->path); + FREE_AND_NULLIFY(options->query); + FREE_AND_NULLIFY(options->pagedata); } int extract(void *v) { |