diff options
| author | frosty <gabriel@bwaaa.monster> | 2026-03-05 04:50:32 +0000 |
|---|---|---|
| committer | frosty <gabriel@bwaaa.monster> | 2026-03-05 04:50:32 +0000 |
| commit | 24cec7a35072ac50e1fe902a925e69330866dbca (patch) | |
| tree | f60bb7c38b0b952e074f9b8f8d1cef758d7f8ec8 /src/Infobox/Infobox.c | |
| parent | 5ed5a6ecc749e8b557ea62f04a444e203f4e48f6 (diff) | |
| download | omnisearch-24cec7a35072ac50e1fe902a925e69330866dbca.tar.gz | |
Diffstat (limited to 'src/Infobox/Infobox.c')
| -rw-r--r-- | src/Infobox/Infobox.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/Infobox/Infobox.c b/src/Infobox/Infobox.c index 5043c05..337b057 100644 --- a/src/Infobox/Infobox.c +++ b/src/Infobox/Infobox.c @@ -2,12 +2,12 @@ #include <stdlib.h> void free_infobox(InfoBox *info) { - if (info->title) - free(info->title); - if (info->thumbnail_url) - free(info->thumbnail_url); - if (info->extract) - free(info->extract); - if (info->url) - free(info->url); + if (info->title) + free(info->title); + if (info->thumbnail_url) + free(info->thumbnail_url); + if (info->extract) + free(info->extract); + if (info->url) + free(info->url); } |
