GNOME Bugzilla – Bug 159737
bsearch usage
Last modified: 2004-12-22 21:47:04 UTC
Solaris' bsearch will call the comparison function if the array is NULL and the element count is zero. This might be a solaris bug (and it is iff NULL is a valid base pointer) and it is certainly rather stupid. Unfortunately it causes a crash in alias_entry_cmp as called from _xdg_mime_alias_list_lookup. Suggested work-around: test for zero elements.
On what does it call the comparison function if array is NULL ?! If there are no elements, how can a test for zero elements help ?
The solaris bsearch code just isn't prepared for getting zero elements. With NULL it will call the comparison function with NULL. if (list->n_aliases == 0) return NULL; in _xdg_mime_alias_list_lookup will help because it won't ever enter bsearch.
2004-11-29 Matthias Clasen <mclasen@redhat.com> * xdgmimeparent.c (_xdg_mime_parent_list_lookup): * xdgmimealias.c (_xdg_mime_alias_list_lookup): Protect against stupid bsearch() implementations. (#159737, Morten Welinder)