Comment 3 for bug 791294

Revision history for this message
Dr. David Alan Gilbert (davidgil-uk) wrote :

Looking at test_conf.c:752 we see:

        nih_io_select_fds (&nfds, &readfds, &writefds, &exceptfds);
        nih_io_handle_fds (&readfds, &writefds, &exceptfds);

        file = (ConfFile *)nih_hash_lookup (source->files, filename);
>>> TEST_EQ_P (file, NULL);

        TEST_FREE (old_job);

The use of nih_ makes me suspicious (without proof) that what we have here is an instance of bug 791315 which is libnih failing it's tests.

Dave