1.4.3
- On Windows, always call
CreateFileW
instead ofCreateFile
.
CreateFile
could be mapped toCreateFileA
and not work as expected.
Pull request by Sandu Liviu Catalin. GitHub #228. - Fixed use of uninitialized memory in
dump_entry_data_list()
that could
cause a heap buffer flow inmmdblookup
. As part of this fix, most uses
ofmalloc
were replaced withcalloc
. Reported by azhou. GitHub #236.