mirror of
https://github.com/netsurf-browser/netsurf
synced 2025-01-03 17:54:33 +03:00
Log any remaining interned strings (there should be none)
svn path=/trunk/netsurf/; revision=10502
This commit is contained in:
parent
30e0cfe7a9
commit
2276afb9f6
@ -54,6 +54,11 @@ static void *netsurf_lwc_alloc(void *ptr, size_t len, void *pw)
|
|||||||
return realloc(ptr, len);
|
return realloc(ptr, len);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void netsurf_lwc_iterator(lwc_string *str, void *pw)
|
||||||
|
{
|
||||||
|
LOG(("%.*s", (int) lwc_string_length(str), lwc_string_data(str)));
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Dispatch a low-level cache query to the frontend
|
* Dispatch a low-level cache query to the frontend
|
||||||
*
|
*
|
||||||
@ -191,6 +196,8 @@ void netsurf_exit(void)
|
|||||||
hlcache_finalise();
|
hlcache_finalise();
|
||||||
LOG(("Finalising low-level cache"));
|
LOG(("Finalising low-level cache"));
|
||||||
llcache_finalise();
|
llcache_finalise();
|
||||||
|
LOG(("Remaining lwc strings:"));
|
||||||
|
lwc_iterate_strings(netsurf_lwc_iterator, NULL);
|
||||||
LOG(("Exited successfully"));
|
LOG(("Exited successfully"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user