X-Git-Url: https://git.wpitchoune.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fhtml.c;h=248cf827b8acc95bbbfae864ca2560e6ec06612b;hb=a2844e3fbd45dfe98e7fc923dd59ce38f2598f81;hp=408c18ed4fce87544818728976596e805cb747ce;hpb=ffb8a406a1cf1b501dd3e3051e6028486c76f1e7;p=ppastats.git diff --git a/src/html.c b/src/html.c index 408c18e..248cf82 100644 --- a/src/html.c +++ b/src/html.c @@ -38,11 +38,11 @@ #include #include -static const char *footer; -static const char *ppa_body; -static const char *pkg_body; -static const char *pkg_version_body; -static const char *header; +static char *footer; +static char *ppa_body; +static char *pkg_body; +static char *pkg_version_body; +static char *header; static char *path_new(const char *dir, const char *file, const char *suffixe) { @@ -566,3 +566,11 @@ ppa_to_html(const char *owner, free(path); } + +void html_cleanup() { + free(header); + free(footer); + free(ppa_body); + free(pkg_body); + free(pkg_version_body); +}