In general, any use of static buffers should be checked to make
sure they are safe.
Fix:
Validate that buffer can't overflow or use dynamic buffer.
NB: cat_libfile in common/utils.c uses a buffer of size BUFSIZ to
read external library files. Also, svg_textline in common/svggen.c
uses svg_printf to output a line of text. The latter function uses
a buffer of size BUFSIZ. Thus, one assumes lines in the files and
a text line in a graph have fewer than BUFSIZ characters.
Owner: erg
Status: Fixed (15 Jan 2002)