shithub: tinygl

Download patch

ref: 2fa19429e3ed99c57e909949464179c1244c3043
parent: 5e3f3c032dbd4baf5b0f500e6537406efe5e937c
author: gek169 <gek169>
date: Wed May 12 11:29:59 EDT 2021

Automatic commit.

--- a/include-demo/stringutil.h
+++ b/include-demo/stringutil.h
@@ -372,6 +372,7 @@
 typedef struct strll{
 	char* text;
 	unsigned long identification;
+	void* data;
 	struct strll* right;
 	struct strll* child;
 	struct strll* left;
@@ -393,6 +394,7 @@
 		current->right = STRUTIL_CALLOC(1, sizeof(strll));
 		current = current->right;
 	}
+	STRUTIL_FREE(alloced_text);
 	return result;
 }