[issue35371] Fix undefined behavior in os.utime() on Windows

2018-12-01 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue35371] Fix undefined behavior in os.utime() on Windows

2018-12-01 Thread miss-islington
miss-islington added the comment: New changeset 013832ff964a0b3b59e04a07a33bae65c1c3ae84 by Miss Islington (bot) in branch '3.6': bpo-35371: Fix possible crash in os.utime() on Windows. (GH-10844) https://github.com/python/cpython/commit/013832ff964a0b3b59e04a07a33bae65c1c3ae84 --

[issue35371] Fix undefined behavior in os.utime() on Windows

2018-12-01 Thread miss-islington
miss-islington added the comment: New changeset 265b41996aa3f604624a8046d1c314a1aee4b590 by Miss Islington (bot) in branch '3.7': bpo-35371: Fix possible crash in os.utime() on Windows. (GH-10844) https://github.com/python/cpython/commit/265b41996aa3f604624a8046d1c314a1aee4b590 --

[issue35371] Fix undefined behavior in os.utime() on Windows

2018-12-01 Thread miss-islington
Change by miss-islington : -- pull_requests: +10081 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35371] Fix undefined behavior in os.utime() on Windows

2018-12-01 Thread miss-islington
Change by miss-islington : -- pull_requests: +10080 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35371] Fix undefined behavior in os.utime() on Windows

2018-12-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 32bc11c33cf5ccea165b5f4ac3799f02fdf9c76a by Serhiy Storchaka in branch 'master': bpo-35371: Fix possible crash in os.utime() on Windows. (GH-10844) https://github.com/python/cpython/commit/32bc11c33cf5ccea165b5f4ac3799f02fdf9c76a --

[issue35371] Fix undefined behavior in os.utime() on Windows

2018-12-01 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +10079 stage: -> patch review ___ Python tracker ___ ___

[issue35371] Fix undefined behavior in os.utime() on Windows

2018-12-01 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : The hFile variable is used uninitialized in os.utime() on Windows when an error is raised in arguments parsing. This is an undefined behavior, and can cause a crash. -- assignee: serhiy.storchaka components: Extension Modules messages: 330850