gentoo-overlay/media-sound/mt-daapd/files/mt-daapd-1586-sparc.patch

21 lines
915 B
Diff

diff -Nura mt-daapd-0.2.3/src/scan-mp3.c mt-daapd-0.2.3.sparc/src/scan-mp3.c
--- mt-daapd-0.2.3/src/scan-mp3.c 2005-02-05 18:22:47.000000000 -0300
+++ mt-daapd-0.2.3.sparc/src/scan-mp3.c 2006-01-03 16:39:50.000000000 -0300
@@ -1663,14 +1663,14 @@
/* now check for an XING header */
if(strncasecmp((char*)&buffer[index+fi.xing_offset+4],"XING",4) == 0) {
DPRINTF(E_DBG,L_SCAN,"Found Xing header\n");
- xing_flags=*((int*)&buffer[index+fi.xing_offset+4+4]);
+ memcpy (&xing_flags, &buffer[index+fi.xing_offset+4+4], sizeof(int));
xing_flags=ntohs(xing_flags);
DPRINTF(E_DBG,L_SCAN,"Xing Flags: %02X\n",xing_flags);
if(xing_flags & 0x1) {
/* Frames field is valid... */
- fi.number_of_frames=*((int*)&buffer[index+fi.xing_offset+4+8]);
+ memcpy (&fi.number_of_frames, &buffer[index+fi.xing_offset+4+8], sizeof(int));
fi.number_of_frames=ntohs(fi.number_of_frames);
}
}