]> granicus.if.org Git - postgis/commitdiff
Fixed a bug making asSVG return a spurious char at the end.
authorSandro Santilli <strk@keybit.net>
Fri, 15 Oct 2004 11:48:48 +0000 (11:48 +0000)
committerSandro Santilli <strk@keybit.net>
Fri, 15 Oct 2004 11:48:48 +0000 (11:48 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@1009 b70326c6-7e19-0410-871a-916f4a2858ee

lwgeom/lwgeom_svg.c

index dd5a12e7d06d9b3bc92b19cfc42ef4a9f7c8190e..69e134f10db98a606a2284d9cf0913d215ec59a1 100644 (file)
@@ -63,7 +63,7 @@ Datum assvg_geometry(PG_FUNCTION_ARGS)
                
        svg = geometry_to_svg(geom, svgrel, precision);
 
-       len = strlen(svg) + 5;
+       len = strlen(svg) + 4;
 
        result= palloc(len);
        *((int *) result) = len;
@@ -280,6 +280,9 @@ print_svg_path_rel(char *result, POINTARRAY *pa, int precision)
 
 /**********************************************************************
  * $Log$
+ * Revision 1.5  2004/10/15 11:48:48  strk
+ * Fixed a bug making asSVG return a spurious char at the end.
+ *
  * Revision 1.4  2004/10/15 09:41:22  strk
  * changed precision semantic back to number of decimal digits
  *