summaryrefslogtreecommitdiff
path: root/css/css.c
diff options
context:
space:
mode:
Diffstat (limited to 'css/css.c')
-rw-r--r--css/css.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/css/css.c b/css/css.c
index acbc14a14..66dc6d4ba 100644
--- a/css/css.c
+++ b/css/css.c
@@ -31,6 +31,7 @@
#include "utils/messages.h"
#include "css/css.h"
+#include "css/hints.h"
#include "css/internal.h"
/* Define to trace import fetches */
@@ -806,6 +807,7 @@ static void nscss_fini(void)
css_stylesheet_destroy(blank_import);
blank_import = NULL;
}
+ css_hint_fini();
}
static const content_handler css_content_handler = {
@@ -832,6 +834,10 @@ nserror nscss_init(void)
if (error != NSERROR_OK)
goto error;
+ error = css_hint_init();
+ if (error != NSERROR_OK)
+ goto error;
+
return NSERROR_OK;
error: