Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,10 @@ internal actual object SystemDefaultProvider : PlatformProvider {
fseek(file, 0L, SEEK_SET)

// Read file content
val buffer = ByteArray(size.toInt()).pin()
val rc = fread(buffer.addressOf(0), 1uL, size.toULong(), file)
if (rc == size.toULong()) buffer.get() else null
ByteArray(size.toInt()).usePinned { buffer ->
val rc = fread(buffer.addressOf(0), 1uL, size.toULong(), file)
if (rc == size.toULong()) buffer.get() else null
}
} finally {
fclose(file)
}
Expand Down
Loading