Buffersize for holding Starter and image filenames was way too low.
This commit is contained in:
parent
12d58ddd23
commit
be7f8a64b6
2 changed files with 9 additions and 5 deletions
|
|
@ -61,6 +61,10 @@ $Id$
|
||||||
* Songhay translation
|
* Songhay translation
|
||||||
Abdoul Cisse <abdoulseydou@hotmail.com>
|
Abdoul Cisse <abdoulseydou@hotmail.com>
|
||||||
|
|
||||||
|
* Bug Fixes
|
||||||
|
---------
|
||||||
|
* Buffersize for holding Starter and image filenames was way too low.
|
||||||
|
|
||||||
|
|
||||||
2009.June.28 (0.9.21)
|
2009.June.28 (0.9.21)
|
||||||
* New Starters:
|
* New Starters:
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
Tux Paint - A simple drawing program for children.
|
Tux Paint - A simple drawing program for children.
|
||||||
|
|
||||||
Copyright (c) 2002-2008 by Bill Kendrick and others; see AUTHORS.txt
|
Copyright (c) 2002-2009 by Bill Kendrick and others; see AUTHORS.txt
|
||||||
bill@newbreedsoftware.com
|
bill@newbreedsoftware.com
|
||||||
http://www.tuxpaint.org/
|
http://www.tuxpaint.org/
|
||||||
|
|
||||||
|
|
@ -22,7 +22,7 @@
|
||||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
(See COPYING.txt)
|
(See COPYING.txt)
|
||||||
|
|
||||||
June 14, 2002 - August 9, 2009
|
June 14, 2002 - August 10, 2009
|
||||||
$Id$
|
$Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
@ -1337,8 +1337,8 @@ static int cur_shape, cur_magic;
|
||||||
static int cur_font, cur_eraser;
|
static int cur_font, cur_eraser;
|
||||||
static int cursor_left, cursor_x, cursor_y, cursor_textwidth; /* canvas-relative */
|
static int cursor_left, cursor_x, cursor_y, cursor_textwidth; /* canvas-relative */
|
||||||
static int been_saved;
|
static int been_saved;
|
||||||
static char file_id[32];
|
static char file_id[NAME_MAX];
|
||||||
static char starter_id[32];
|
static char starter_id[NAME_MAX];
|
||||||
static int brush_scroll;
|
static int brush_scroll;
|
||||||
static int stamp_scroll[MAX_STAMP_GROUPS];
|
static int stamp_scroll[MAX_STAMP_GROUPS];
|
||||||
static int font_scroll, magic_scroll;
|
static int font_scroll, magic_scroll;
|
||||||
|
|
@ -11226,7 +11226,7 @@ static void autoscale_copy_smear_free(SDL_Surface * src, SDL_Surface * dst,
|
||||||
static void load_starter_id(char *saved_id)
|
static void load_starter_id(char *saved_id)
|
||||||
{
|
{
|
||||||
char *rname;
|
char *rname;
|
||||||
char fname[32];
|
char fname[NAME_MAX];
|
||||||
FILE *fi;
|
FILE *fi;
|
||||||
char color_tag;
|
char color_tag;
|
||||||
int r, g, b;
|
int r, g, b;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue