1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-01 09:10:37 +00:00

FreeLibrary in func__newimage

Freeing the runtime linked library in `func__newimage` after the call
This commit is contained in:
Zachary Spriggs 2021-03-26 08:34:55 -04:00 committed by GitHub
parent 20a61cc474
commit 46e24587aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18474,7 +18474,9 @@ void sub_put2(int32 i,int64 offset,void *element,int32 passed){
if(NULL != dpiaware){
(dpiaware) ();
j = 1;
FreeLibrary(user32);
}
FreeLibrary(user32);
}
}
#endif