mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
e37caa01ec
Before this change, exec_later allocates memory for the struct exec_mailcap structure using calloc. However, the memory is freed in exec_mailcap_command using mem_free. Change exec_later to use mem_calloc instead of calloc. Unless CONFIG_FASTMEM is used, mem_free expects to find debugging metadata that only the mem_alloc family of functions store, and thus using mem_free on the memory allocated using calloc causes a crash. |
||
---|---|---|
.. | ||
download.c | ||
download.h | ||
history.c | ||
history.h | ||
location.c | ||
location.h | ||
Makefile | ||
session.c | ||
session.h | ||
task.c | ||
task.h |