| 123456789101112131415161718192021 |
- commit 4aff18dad530e1afbe235fc28b981c3e6de296e4
- Author: Oliver Fabel <28701799+ofabel@users.noreply.github.com>
- Date: Wed Oct 2 05:56:09 2024 +0200
- library update
- diff --git a/mp_flipper_fileio.c b/mp_flipper_fileio.c
- index b7ca8a050..149551a68 100644
- --- a/mp_flipper_fileio.c
- +++ b/mp_flipper_fileio.c
- @@ -61,9 +61,7 @@ static mp_uint_t mp_flipper_fileio_ioctl(mp_obj_t self, mp_uint_t request, uintp
- mp_flipper_fileio_file_descriptor_t* fd = MP_OBJ_TO_PTR(self);
-
- if(fd->handle == NULL) {
- - *errcode = MP_EIO;
- -
- - return MP_STREAM_ERROR;
- + return 0;
- }
-
- if(request == MP_STREAM_SEEK) {
|