Where I can find source code of ucrtbase.dll and ucrtbased.dll

  • Thread starter Thread starter Heckad
  • Start date Start date
H

Heckad

Guest
Python 3.7.2 and 3.6.8 crash if eval this code

import time
import locale
locale.setlocale(locale.LC_ALL, 'Russian_Russia.utf8')

time.localtime(1)

with error -1073740940 (0xC0000374)


I tring to find the rithen of this.

For it I compile python 3.7.2 using visual studio and I managed to reproduce the bug. In stactrace I can sow all inted of

[Inline Frame] ucrtbased.dll!__crt_internal_free_policy::operator()(const char * const) Line 335 C++
[Inline Frame] ucrtbased.dll!__crt_unique_heap_ptr<char,__crt_internal_free_policy>::release() Line 392 C++
ucrtbased.dll!__crt_unique_heap_ptr<char,__crt_internal_free_policy>::~__crt_unique_heap_ptr<char,__crt_internal_free_policy>() Line 366 C++



Where I can find code of this lib?

Continue reading...
 
Back
Top