From 74ebee5d3a81a39766ba8cd436a548449ea887b0 Mon Sep 17 00:00:00 2001 From: Mole Shang <135e2@135e2.dev> Date: Sat, 2 Mar 2024 12:55:03 +0800 Subject: tree-wide: use FREE_AND_NULLIFY macro and reformat code Jeez idk why i forgot the pass-by-value feature, so the original version never gets the pointer nullified. Fix it by using our favourite C-style macro. --- src/extractors/haokan.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/extractors/haokan.c') diff --git a/src/extractors/haokan.c b/src/extractors/haokan.c index f289c3e..b3e943d 100644 --- a/src/extractors/haokan.c +++ b/src/extractors/haokan.c @@ -38,8 +38,8 @@ void haokan_extract(Options *options) { end: free_str_array(&results); - free_and_nullify(filename); - free_and_nullify(videoURL); + FREE_AND_NULLIFY(filename); + FREE_AND_NULLIFY(videoURL); return; } free_str_array(&results); -- cgit v1.2.3