From 926be456b4316012e12c05a82f56637ce920397b Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Sat, 4 May 2013 08:59:55 +0100 Subject: check the return codes from css increment and reset --- css/dump.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'css') diff --git a/css/dump.c b/css/dump.c index 1fe887400..1b4d126ca 100644 --- a/css/dump.c +++ b/css/dump.c @@ -576,7 +576,7 @@ void nscss_dump_computed_style(FILE *stream, const css_computed_style *style) /* counter-increment */ val = css_computed_counter_increment(style, &counter); - if (counter == NULL) { + if ((val == CSS_COUNTER_INCREMENT_NONE) || (counter == NULL)) { fprintf(stream, "counter-increment: none "); } else { fprintf(stream, "counter-increment:"); @@ -596,7 +596,7 @@ void nscss_dump_computed_style(FILE *stream, const css_computed_style *style) /* counter-reset */ val = css_computed_counter_reset(style, &counter); - if (counter == NULL) { + if ((val = CSS_COUNTER_RESET_NONE) || (counter == NULL)) { fprintf(stream, "counter-reset: none "); } else { fprintf(stream, "counter-reset:"); -- cgit v1.2.3