Setup the assembler to use the new file reading code.
This commit is contained in:
+1
-1
@@ -25,7 +25,7 @@ List* CreateList() {
|
||||
int AddListItem(const void *value, size_t size, List* list) {
|
||||
if (!list) return -1;
|
||||
if (!value) return -1;
|
||||
if (size == 0) return - 1;
|
||||
if (size == 0) return -1;
|
||||
|
||||
if (list->capacity < list->size + 1) {
|
||||
void* ptr = realloc(list->content, sizeof(void*) * list->capacity * 2);
|
||||
|
||||
Reference in New Issue
Block a user