[issue42036] Unchecked return in Modules/posixmodule.c from multiple function calls

2020-10-27 Thread Sagar Pant
Sagar Pant added the comment: Bumping this up for updates. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42036] Unchecked return in Modules/posixmodule.c from multiple function calls

2020-10-14 Thread Sagar Pant
Change by Sagar Pant : -- components: +Library (Lib) -C API ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue42036] Unchecked return in Modules/posixmodule.c from multiple function calls

2020-10-14 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch nosy: +python-dev nosy_count: 1.0 -> 2.0 pull_requests: +21668 stage: -> patch review pull_request: https://github.com/python/cpython/pull/22696 ___ Python tracker _

[issue42036] Unchecked return in Modules/posixmodule.c from multiple function calls

2020-10-14 Thread Sagar Pant
New submission from Sagar Pant : The return value of a function that is potentially used to initialize a local variable is not checked. Therefore, reading the local variable may result in undefined behavior. Our AI analyzer flagged it to be a potential bug as it found another usage of the fun