Re: [AD] dynamically loaded modules for Unix |
[ Thread Index |
Date Index
| More lists.liballeg.org/allegro-developers Archives
]
On 26 Jun 2001, Eric Botcazou <ebotcazou@xxxxxxxxxx> wrote:
> > - The Windows port can probably use the new driver list functions
> > instead of malloc'ing stuff itself. That will make `drvlist.c'
> > look less silly in `src' instead of `src/misc'.
>
> That's done, the attached patch was commited (although using an array behind
> a linked list interface is rather weird).
> + /* sentinel driver */
> + driver_list = _driver_list_add_driver(driver_list, 0, NULL, FALSE);
Unnecessary. The sentinel is added automatically.
Also, the driver lists are never destroyed. Maybe that's not
considered a bug in the Windows port?