Fix bug in recent string allocator change
diff --git a/src/qcbor_decode.c b/src/qcbor_decode.c
index 079e77d..fe384c0 100644
--- a/src/qcbor_decode.c
+++ b/src/qcbor_decode.c
@@ -849,7 +849,7 @@
// Get item for next chunk
QCBORItem StringChunkItem;
// NULL passed to never string alloc chunk of indefinite length strings
- nReturn = GetNext_Item(&(me->InBuf), &StringChunkItem, pAllocator);
+ nReturn = GetNext_Item(&(me->InBuf), &StringChunkItem, NULL);
if(nReturn) {
break; // Error getting the next chunk
}