mirror of
https://github.com/gwenhael-le-moine/x49gp.git
synced 2024-12-25 21:58:49 +01:00
[block_vvfat.c] slightly increase buffer size to avoid array-bounds and stringop-overflow= errors
This commit is contained in:
parent
25a78e1ccc
commit
00f57c458f
2 changed files with 9 additions and 8 deletions
4
Makefile
4
Makefile
|
@ -95,9 +95,7 @@ X49GP_CFLAGS = -O2 \
|
|||
$(DEBUG) \
|
||||
$(INCLUDES) \
|
||||
$(DEFINES) \
|
||||
-Wno-error=deprecated-declarations \
|
||||
-Wno-error=stringop-overflow= \
|
||||
-Wno-error=array-bounds
|
||||
-Wno-error=deprecated-declarations
|
||||
X49GP_LDFLAGS += $(DEBUG) $(GDB_LDFLAGS)
|
||||
X49GP_LDLIBS = $(X49GP_LIBS) $(GDB_LIBS) $(COCOA_LIBS)
|
||||
|
||||
|
|
|
@ -437,24 +437,27 @@ static inline int short2long_name( char* dest, const char* src )
|
|||
dest[ 2 * i ] = dest[ 2 * i + 1 ] = 0;
|
||||
for ( i = 2 * i + 2; ( i % 26 ); i++ )
|
||||
dest[ i ] = 0xff;
|
||||
|
||||
return i;
|
||||
}
|
||||
|
||||
static inline direntry_t* create_long_filename( BDRVVVFATState* s, const char* filename )
|
||||
{
|
||||
char buffer[ 258 ];
|
||||
int length = short2long_name( buffer, filename ), number_of_entries = ( length + 25 ) / 26, i;
|
||||
char buffer[ 260 ];
|
||||
int length = short2long_name( buffer, filename );
|
||||
int number_of_entries = ( length + 25 ) / 26;
|
||||
int offset;
|
||||
direntry_t* entry;
|
||||
|
||||
for ( i = 0; i < number_of_entries; i++ ) {
|
||||
for ( int i = 0; i < number_of_entries; i++ ) {
|
||||
entry = array_get_next( &( s->directory ) );
|
||||
entry->attributes = 0xf;
|
||||
entry->reserved[ 0 ] = 0;
|
||||
entry->begin = 0;
|
||||
entry->name[ 0 ] = ( number_of_entries - i ) | ( i == 0 ? 0x40 : 0 );
|
||||
}
|
||||
for ( i = 0; i < length; i++ ) {
|
||||
int offset = ( i % 26 );
|
||||
for ( int i = 0; i < length; i++ ) {
|
||||
offset = ( i % 26 );
|
||||
if ( offset < 10 )
|
||||
offset = 1 + offset;
|
||||
else if ( offset < 22 )
|
||||
|
|
Loading…
Reference in a new issue