| 86 | } |
| 87 | |
| 88 | int pfsUmount() { |
| 89 | if (pfs_mount_point[0] == 0) |
| 90 | return -1; |
| 91 | |
| 92 | int res = sceAppMgrUmount(pfs_mount_point); |
| 93 | if (res >= 0) { |
| 94 | memset(pfs_mount_point, 0, sizeof(pfs_mount_point)); |
| 95 | memset(pfs_mounted_path, 0, sizeof(pfs_mounted_path)); |
| 96 | } |
| 97 | |
| 98 | return res; |
| 99 | } |
no outgoing calls
no test coverage detected