Skip to content
Snippets Groups Projects
  • Stefano Babic's avatar
    33f0086c
    env: fix memory leak in fw_env routines · 33f0086c
    Stefano Babic authored
    
    fw_env_open allocates buffers to store the environment, but these
    buffers are never freed. This becomes quite nasty using the fw_ tools as
    library, because each access to the environment (even just reading a
    variable) generates a memory leak equal to the size of the environment.
    
    Fix this renaming fw_env_close() as fw_env_flush(), because the function
    really flushes the environment from RAM to storage, and add a
    fw_env_close function to free the allocated resources.
    
    Signed-off-by: default avatarStefano Babic <sbabic@denx.de>
    33f0086c
    History
    env: fix memory leak in fw_env routines
    Stefano Babic authored
    
    fw_env_open allocates buffers to store the environment, but these
    buffers are never freed. This becomes quite nasty using the fw_ tools as
    library, because each access to the environment (even just reading a
    variable) generates a memory leak equal to the size of the environment.
    
    Fix this renaming fw_env_close() as fw_env_flush(), because the function
    really flushes the environment from RAM to storage, and add a
    fw_env_close function to free the allocated resources.
    
    Signed-off-by: default avatarStefano Babic <sbabic@denx.de>