Skip to content

Commit

Permalink
Merge pull request 'Use size in stringlist_create_with_size' (!199) f…
Browse files Browse the repository at this point in the history
…rom lwgeom-stringlist-size into master

Reviewed-on: https://git.osgeo.org/gitea/postgis/postgis/pulls/199
  • Loading branch information
pramsey committed Apr 8, 2024
2 parents b123d48 + ee2e149 commit ef1511c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion liblwgeom/stringlist.c
Expand Up @@ -63,7 +63,7 @@ stringlist_create_with_size(size_t size)
{
stringlist_t *s = lwalloc(sizeof(stringlist_t));
memset(s, 0, sizeof(stringlist_t));
stringlist_init(s);
stringlist_init_with_size(s, size);
return s;
}

Expand Down

0 comments on commit ef1511c

Please sign in to comment.