Merge pull request #63 from Azq2/patch-1

fix infinitie loop (revert my previous broken PR)
This commit is contained in:
Alexander 2019-01-14 14:51:09 +03:00 committed by GitHub
commit 4b279a32dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -458,7 +458,7 @@ void mythread_queue_list_entry_make_batch(mythread_t* mythread, mythread_queue_l
return;
size_t i = 0;
for(size_t from = mythread->id_increase; from < mythread->entries_length; from++) {
for(size_t from = mythread->id_increase; from <= mythread->entries_length; from++) {
entry->thread_param[from].use = i;
i++;
}
@ -469,8 +469,9 @@ void mythread_queue_list_entry_make_stream(mythread_t* mythread, mythread_queue_
if(entry == NULL || mythread == NULL)
return;
for(size_t from = mythread->id_increase; from < mythread->entries_length; from++) {
entry->thread_param[from].use = 0;
for(size_t from = mythread->id_increase; from <= mythread->entries_length; from++) {
if (from < entry->thread_param_size)
entry->thread_param[from].use = 0;
}
}