Closed aldostools closed 1 year ago
https://github.com/Evilnat/Cobra-PS3/blob/09c5806dc824faab9ad3b4f6338b493ab281d56b/8.3/4.88/NORMAL/CEX/SRC/stage2/mappath.c#L265
This line is saving a truncated path (last 16 characters are missing) cellFsWrite(fd, path, len, &size);
cellFsWrite(fd, path, len, &size);
It should be: cellFsWrite(fd, path, (len+16), &size); or cellFsWrite(fd, path, size, &size); // size = len+16; in line 253
cellFsWrite(fd, path, (len+16), &size);
cellFsWrite(fd, path, size, &size);
https://github.com/Evilnat/Cobra-PS3/blob/09c5806dc824faab9ad3b4f6338b493ab281d56b/8.3/4.88/NORMAL/CEX/SRC/stage2/mappath.c#L265
This line is saving a truncated path (last 16 characters are missing)
cellFsWrite(fd, path, len, &size);
It should be:
cellFsWrite(fd, path, (len+16), &size);
orcellFsWrite(fd, path, size, &size);
// size = len+16; in line 253