Gimp/plug-ins/script-fu/tinyscheme
Kevin Cozens 6e476b9b4a Added extra checks to stop bad syntax in LET*, LET, and LETREC from
2007-12-17  Kevin Cozens  <kcozens@cvs.gnome.org>

	* plug-ins/script-fu/tinyscheme/scheme.c: Added extra checks to stop
	bad syntax in LET*, LET, and LETREC from causing a segmentation fault
	in Linux. See SourceForge bug #1817986.

svn path=/trunk/; revision=24400
2007-12-18 20:12:11 +00:00
..
BUILDING
CHANGES Minor changes to quiet the compiler. 2006-12-07 18:57:10 +00:00
COPYING
dynload.c
dynload.h
hack.txt
init.scm The changes below (except for init.scm) were found during the work of 2006-10-12 20:31:33 +00:00
Makefile.am plug-ins/script-fu/ftx/Makefile.am plug-ins/script-fu/re/Makefile.am 2006-11-23 21:55:35 +00:00
Manual.txt scripts/tiny-fu.init tiny-fu/ts-wrapper.c tinyscheme/Manual.txt Updates to 2006-10-05 17:39:54 +00:00
MiniSCHEMETribute.txt
opdefines.h Use vectors instead of the non-standard array structure. Also made some 2006-11-09 23:03:55 +00:00
README tinyscheme/README 2005-03-17 20:10:42 +00:00
scheme-private.h plug-ins/script-fu/tinyscheme/scheme-private.h Allow a maximum of two 2007-10-25 20:47:27 +00:00
scheme.c Added extra checks to stop bad syntax in LET*, LET, and LETREC from 2007-12-18 20:12:11 +00:00
scheme.h plug-ins/script-fu/tinyscheme/scheme.[ch] make it possible for foreign 2007-08-31 19:35:26 +00:00

This directory contains a version of TinyScheme which has been modified
to support UTF-8 coded strings. The strings stored in a data cell are
expected to be in UTF-8 format. This allows the continued use of gchar
pointers to pass around the strings. Processing the strings will require
conversion to unicode at times depending on the specific operation that
needs to be done on the UTF-8 coded strings.

The string length value stored in a data cell is the length in bytes of that
string including the terminating NUL.

Routines that want a string length for a UTF-8 coded string will be passed
the number of characters and not the number of bytes. If the number of bytes
is needed, the normal call to strlen() will work.