char part[6];
WBFS_GetPartitionName(0, (char *) &part);
the variable part itself is a pointer
so
(char *) &part);
is wrong unless you do
(char *) &part[0]);
so best would be to use
(char *) part);
its a small memory corruption
attached is a fix for this.
Original issue reported on code.google.com by captno...@gmail.com on 12 Dec 2010 at 10:36
Original issue reported on code.google.com by
captno...@gmail.com
on 12 Dec 2010 at 10:36Attachments: