Fix ISO15693 crash with >= 255 bytes NDef message.

There is a null pointer crash if the data of block doesn't contain
any NDef message data.

Bug: 30240338
Change-Id: Iff54f11b76317bac21f148bf9298ae8c3201093a
diff --git a/src/nfc/tags/rw_i93.c b/src/nfc/tags/rw_i93.c
index acdbcb7..cec6af9 100644
--- a/src/nfc/tags/rw_i93.c
+++ b/src/nfc/tags/rw_i93.c
@@ -1997,6 +1997,11 @@
 
         p_i93->rw_length += p_resp->len;
     }
+    else
+    {
+        /* in case of no Ndef data included */
+        p_resp->len = 0;
+    }
 
     /* if read all of NDEF data */
     if (p_i93->rw_length >= p_i93->ndef_length)
@@ -2019,7 +2024,10 @@
                          p_resp->len,
                          p_i93->ndef_length);
 
-        (*(rw_cb.p_cback)) (RW_I93_NDEF_READ_EVT, &rw_data);
+        if (p_resp->len > 0)
+        {
+            (*(rw_cb.p_cback)) (RW_I93_NDEF_READ_EVT, &rw_data);
+        }
 
         /* this will make read data from next block */
         p_i93->rw_offset += length;