Eric Pouech eric.pouech@wanadoo.fr writes:
HeapFree(GetProcessHeap(), 0, actctx->assemblies);
actctx->magic = 0;
HeapFree(GetProcessHeap(), 0, (void*)actctx->config.info);
HeapFree(GetProcessHeap(), 0, (void*)actctx->app.info);
Please don't cast off const, we are trying to get rid of these warnings. If the strings need to be freed then they cannot be const.