Fixed missing initialization.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@15149 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
parent
5e3c8f9358
commit
99a4ca309a
|
@ -224,8 +224,9 @@ static msg_t node_dir_next(void *instance, vfs_node_info_t *nip) {
|
||||||
vfs_driver_t *drvOverlayObjectInit(vfs_overlay_driver_t *vodp,
|
vfs_driver_t *drvOverlayObjectInit(vfs_overlay_driver_t *vodp,
|
||||||
const char *rootname) {
|
const char *rootname) {
|
||||||
|
|
||||||
vodp->vmt = &driver_vmt;
|
vodp->vmt = &driver_vmt;
|
||||||
vodp->rootname = rootname;
|
vodp->rootname = rootname;
|
||||||
|
vodp->next_driver = &vodp->drivers[0];
|
||||||
|
|
||||||
/* Initializing pools.*/
|
/* Initializing pools.*/
|
||||||
chPoolObjectInit(&vodp->dir_nodes_pool,
|
chPoolObjectInit(&vodp->dir_nodes_pool,
|
||||||
|
|
Loading…
Reference in New Issue