From: Paul Ramsey Date: Mon, 20 Jun 2011 17:08:21 +0000 (+0000) Subject: Increase size of generator.c static buffer. (#583) X-Git-Tag: 2.0.0alpha1~1392 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8904b615350925aed4dd6cd2becb5f29e0b609a3;p=postgis Increase size of generator.c static buffer. (#583) git-svn-id: http://svn.osgeo.org/postgis/trunk@7435 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/doc/html/image_src/generator.c b/doc/html/image_src/generator.c index f604b18fc..80ed6e7b7 100644 --- a/doc/html/image_src/generator.c +++ b/doc/html/image_src/generator.c @@ -364,7 +364,7 @@ int main( int argc, const char* argv[] ) while ( fgets ( line, sizeof line, pfile ) != NULL && !isspace(*line) ) { - char output[2048]; + char output[32768]; char *ptr = output; char *styleName; int useDefaultStyle;