src/c/load.d: windows fasls were not marked as self-destructing.

This commit is contained in:
Juanjo 2009-09-21 11:17:05 +02:00 committed by Juan Jose Garcia Ripoll
parent 2d639b4850
commit e39a9044ec

1
src/c/load.d Normal file → Executable file
View file

@ -143,6 +143,7 @@ ecl_library_open(cl_object filename, bool force_reload) {
* file has been previously loaded. */
#if defined(mingw32) || defined(_MSC_VER)
filename = copy_object_file(filename);
self_destruct = 1;
#else
block = ecl_library_find_by_name(filename);
if (!Null(block)) {