Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

sbtools: fix buffer overflow

Change-Id: I7b1c963e58eec88da215722ec219569a0a5a9cea

+1 -1
+1 -1
utils/imxtools/sbtools/sb1.c
··· 159 159 memmove(buf + i * SECTOR_SIZE, buf + i * (SECTOR_SIZE - 4), SECTOR_SIZE - 4); 160 160 161 161 union xorcrypt_key_t key[2]; 162 - memcpy(key, sb->key.u.xor_key, sizeof(sb->key)); 162 + memcpy(key, sb->key.u.xor_key, sizeof(sb->key.u.xor_key)); 163 163 void *ptr = header + 1; 164 164 int offset = header->header_size; 165 165 for(unsigned i = 0; i < image_size / SECTOR_SIZE; i++)