Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-08-01 | win32: fix a potential memory leak in Curl_load_library | Martin Vejnár | |
If a call to GetSystemDirectory fails, the `path` pointer that was previously allocated would be leaked. This makes sure that `path` is always freed. Closes #938 | |||
2016-06-05 | checksrc: Add LoadLibrary to the banned functions list | Jay Satiro | |
LoadLibrary was supplanted by Curl_load_library for security reasons in 6df916d. | |||
2016-06-04 | win32: Added verify windows version functionality | Steve Holme | |
2016-06-04 | win32: Introduced centralised verify windows version function | Steve Holme | |
2016-05-30 | loadlibrary: Only load system DLLs from the system directory | Steve Holme | |
Inspiration provided by: Daniel Stenberg and Ray Satiro Bug: https://curl.haxx.se/docs/adv_20160530.html Ref: Windows DLL hijacking with curl, CVE-2016-4802 |