fix segfault

This commit is contained in:
Mathieu Rene 2012-10-18 12:48:27 -04:00
parent 768e5490d5
commit 1276387c24
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ APR_DECLARE(apr_status_t) apr_thread_create(apr_thread_t **new,
if ((stat = pthread_create((*new)->td, temp, dummy_worker, (*new))) == 0) {
#ifndef __APPLE__
if (attr->priority) {
if (attr && attr->priority) {
pthread_t *thread = (*new)->td;
pthread_setschedprio(*thread, attr->priority);
}