ObjFW  Diff

Differences From Artifact [9ab88e7a0f]:

To Artifact [e54b1de1c0]:


648
649
650
651
652
653
654




655
656
657
658
659
660
661
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665







+
+
+
+







- (id)JSONValueWithDepthLimit: (size_t)depthLimit
{
	void *pool = objc_autoreleasePoolPush();
	const char *pointer = [self UTF8String];
	const char *stop = pointer + [self UTF8StringLength];
	id object;
	size_t line = 1;

#ifdef __clang_analyzer__
	assert(pointer != NULL);
#endif

	object = nextObject(&pointer, stop, &line, depthLimit);
	skipWhitespacesAndComments(&pointer, stop, &line);

	if (pointer < stop || object == nil)
		@throw [OFInvalidJSONException exceptionWithString: self
							      line: line];