summaryrefslogtreecommitdiff
path: root/src/select/computed.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/select/computed.c')
-rw-r--r--src/select/computed.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/select/computed.c b/src/select/computed.c
index a12e10f..cb7e173 100644
--- a/src/select/computed.c
+++ b/src/select/computed.c
@@ -53,27 +53,11 @@ css_error css_computed_style_destroy(css_computed_style *style)
if (style->uncommon != NULL) {
if (style->uncommon->counter_increment != NULL) {
- css_computed_counter **c =
- style->uncommon->counter_increment;
-
- while (*c != NULL) {
- style->alloc(*c, 0, style->pw);
- c++;
- }
-
style->alloc(style->uncommon->counter_increment, 0,
style->pw);
}
if (style->uncommon->counter_reset != NULL) {
- css_computed_counter **c =
- style->uncommon->counter_reset;
-
- while (*c != NULL) {
- style->alloc(*c, 0, style->pw);
- c++;
- }
-
style->alloc(style->uncommon->counter_reset, 0,
style->pw);
}