Skip to content

Commit

Permalink
after the loop
Browse files Browse the repository at this point in the history
  • Loading branch information
oconnor663 committed Feb 1, 2024
1 parent 9e629d4 commit c7e84b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion c_impl/blake3module.c
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,6 @@ static PyObject *Blake3_update_mmap(Blake3Object *self, PyObject *args,
PyErr_SetFromErrno(PyExc_OSError);
goto exit;
}
return NULL;

char *buf[BUFSIZE];
while (1) {
Expand All @@ -271,6 +270,7 @@ static PyObject *Blake3_update_mmap(Blake3Object *self, PyObject *args,
break;
}
}
return NULL;

printf("JACK 7\n");
int fclose_ret = fclose(file);
Expand Down

0 comments on commit c7e84b8

Please sign in to comment.