Browse Source

unix/file: ioctl(): Check that file is open before operations.

pull/2267/merge
Paul Sokolovsky 8 years ago
parent
commit
ade36806c8
  1. 1
      unix/file.c

1
unix/file.c

@ -105,6 +105,7 @@ STATIC mp_uint_t fdfile_write(mp_obj_t o_in, const void *buf, mp_uint_t size, in
STATIC mp_uint_t fdfile_ioctl(mp_obj_t o_in, mp_uint_t request, uintptr_t arg, int *errcode) {
mp_obj_fdfile_t *o = MP_OBJ_TO_PTR(o_in);
check_fd_is_open(o_in);
switch (request) {
case MP_STREAM_SEEK: {
struct mp_stream_seek_t *s = (struct mp_stream_seek_t*)arg;

Loading…
Cancel
Save