diff --git a/doc/Changelog b/doc/Changelog index 8b45447d9..a62413e41 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,6 @@ +17 October 2016: Wouter + - Re-fix #839 from view commit overwrite. + 12 October 2016: Ralph - Free view config elements. diff --git a/services/localzone.c b/services/localzone.c index bb82ff0cc..414611925 100644 --- a/services/localzone.c +++ b/services/localzone.c @@ -159,7 +159,7 @@ local_zone_create(uint8_t* nm, size_t len, int labs, z->namelen = len; z->namelabs = labs; lock_rw_init(&z->lock); - z->region = regional_create(); + z->region = regional_create_custom(sizeof(struct regional)); if(!z->region) { free(z); return NULL;