From a9afcb159acacd0d605dd54fc69709650bd336b8 Mon Sep 17 00:00:00 2001
From: Damien George <damien.p.george@gmail.com>
Date: Fri, 1 May 2015 21:34:08 +0100
Subject: [PATCH] unix/modffi.c: get_buffer is allowed to return NULL if len=0.

This is consistent with the logic in mp_get_buffer, and the code here is
an inlined version of that function.
---
 unix/modffi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/unix/modffi.c b/unix/modffi.c
index e0d86ad1d..b268bf9e0 100644
--- a/unix/modffi.c
+++ b/unix/modffi.c
@@ -375,7 +375,7 @@ STATIC mp_obj_t ffifunc_call(mp_obj_t self_in, mp_uint_t n_args, mp_uint_t n_kw,
             mp_obj_base_t *o = (mp_obj_base_t*)a;
             mp_buffer_info_t bufinfo;
             int ret = o->type->buffer_p.get_buffer(o, &bufinfo, MP_BUFFER_READ); // TODO: MP_BUFFER_READ?
-            if (ret != 0 || bufinfo.buf == NULL) {
+            if (ret != 0) {
                 goto error;
             }
             values[i] = (ffi_arg)bufinfo.buf;
-- 
GitLab