Fix bug in IsoFileSrc implementation, related to a wrogn usage of tsearch.
It happens that tsearch seems to not return a pointer to the inserted element, but a pointer to a pointer to the inserted element (that makes sense, as we are inserted pointers...). This bug, thus, was related to a wrong understanding of the tsearch API!
This commit is contained in:
@ -14,8 +14,6 @@
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
typedef struct Iso_File_Src IsoFileSrc;
|
||||
|
||||
struct Iso_File_Src {
|
||||
|
||||
/* key */
|
||||
|
Reference in New Issue
Block a user