== Warning/Bug Fix ==

Bone extension string was not long enough for new extensions .bot and .top. This was surely causing some stack memory to be overwritten...

Warning reported by JMS on french newsgroup.
This commit is contained in:
Martin Poirier 2008-02-11 22:18:41 +00:00
parent bb715a93b9
commit 798d8ebf26

@ -366,7 +366,7 @@ void bone_autoside_name (char *name, int strip_number, short axis, float head, f
{
int len;
char basename[32]={""};
char extension[3]={""};
char extension[5]={""};
len= strlen(name);
if (len == 0) return;