mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-21 15:05:19 +00:00
Fix double closing on memory file (#1579)
Co-authored-by: fanchao <git@fanchao.dev>
This commit is contained in:
parent
a495ec232a
commit
dec02cef5a
@ -22,7 +22,7 @@ public class MemoryFileUtil {
|
||||
|
||||
int fd = field.getInt(fileDescriptor);
|
||||
|
||||
return ParcelFileDescriptor.adoptFd(fd);
|
||||
return ParcelFileDescriptor.fromFd(fd);
|
||||
} catch (IllegalAccessException e) {
|
||||
throw new IOException(e);
|
||||
} catch (InvocationTargetException e) {
|
||||
|
Loading…
Reference in New Issue
Block a user