mirror of
https://github.com/genodelabs/genode.git
synced 2025-05-08 19:48:13 +00:00
The commit that added firmware loading via the VFS (see #4861) introduces a double-free bug where the memory that contains the image is freed twice, once from the callback and once from the work function. As alle examined drivers call 'release_firmware' from the callback function themselves, remove the erroneous 'kfree' call from the work function. Issue #5264.