On Sat, Jan 03, 2004, Alexander R. Pruss wrote:
> Could we also scan the LAUNCHER directory for the benefit of users who just
> hotsync the font to the card?
Sure.
I have found the bug. In AddVFSFile new code was added for the VFS
font support that made it try to close the file twice,
void AddVFSFile()
{
/* open file */
if ( no error ) {
if ( <is a Plucker document> ) {
/* do stuff */
/* close file */
/* do some more stuff */
}
#ifdef SUPPORT_VFS_FONTS
if ( <is a font file>) {
/* do stuff */
/* close file */
}
#endif
else {
/* close file */
}
}
}
Note how the if statement inside the SUPPORT_VFS_FONTS block changed
the logic a bit, i.e. if it was a Plucker document we will now execute
the else statement, too. Changing it to 'else if' will fix this
problem. That's included in the changes I will commit after I have
run some more tests.
/Mike
_______________________________________________
plucker-dev mailing list
[EMAIL PROTECTED]
http://lists.rubberchicken.org/mailman/listinfo/plucker-dev