summaryrefslogtreecommitdiff
path: root/render/imagemap.c
diff options
context:
space:
mode:
Diffstat (limited to 'render/imagemap.c')
-rw-r--r--render/imagemap.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/render/imagemap.c b/render/imagemap.c
index e50ed6cb6..433ae68be 100644
--- a/render/imagemap.c
+++ b/render/imagemap.c
@@ -564,14 +564,13 @@ imagemap_addtolist(dom_node *n, nsurl *base_url,
if (xcoords == NULL) {
goto bad_out;
}
+ new_map->bounds.poly.xcoords = xcoords;
ycoords = realloc(new_map->bounds.poly.ycoords,
num * sizeof(float));
if (ycoords == NULL) {
goto bad_out;
}
-
- new_map->bounds.poly.xcoords = xcoords;
new_map->bounds.poly.ycoords = ycoords;
new_map->bounds.poly.xcoords[num - 1] = x;