[issue34879] bytesobject.c: Possible null pointer dereference due to formatfloat()

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

[issue34879] bytesobject.c: Possible null pointer dereference due to formatfloat()

2018-10-03 Thread miss-islington
miss-islington added the comment: New changeset 6580e52b64cb207f03a1bf86a18f088b081c10f4 by Miss Islington (bot) in branch '3.6': bpo-34879: Fix a possible null pointer dereference in bytesobject.c (GH-9683) https://github.com/python/cpython/commit/6580e52b64cb207f03a1bf86a18f088b081c10f4

[issue34879] bytesobject.c: Possible null pointer dereference due to formatfloat()

2018-10-03 Thread miss-islington
miss-islington added the comment: New changeset 063755c20184e80f587d522600536d1ba70a5f7e by Miss Islington (bot) in branch '3.7': bpo-34879: Fix a possible null pointer dereference in bytesobject.c (GH-9683) https://github.com/python/cpython/commit/063755c20184e80f587d522600536d1ba70a5f7e

[issue34879] bytesobject.c: Possible null pointer dereference due to formatfloat()

2018-10-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for your report and fix Zackery. -- ___ Python tracker ___ ___ Python-bugs-list

[issue34879] bytesobject.c: Possible null pointer dereference due to formatfloat()

2018-10-03 Thread miss-islington
Change by miss-islington : -- pull_requests: +9071 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34879] bytesobject.c: Possible null pointer dereference due to formatfloat()

2018-10-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 96c593279400693226d5a560c420ae0fcf1731b9 by Serhiy Storchaka (Zackery Spytz) in branch 'master': bpo-34879: Fix a possible null pointer dereference in bytesobject.c (GH-9683)

[issue34879] bytesobject.c: Possible null pointer dereference due to formatfloat()

2018-10-03 Thread miss-islington
Change by miss-islington : -- pull_requests: +9070 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34879] bytesobject.c: Possible null pointer dereference due to formatfloat()

2018-10-02 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +9069 stage: -> patch review ___ Python tracker ___ ___

[issue34879] bytesobject.c: Possible null pointer dereference due to formatfloat()

2018-10-02 Thread Zackery Spytz
New submission from Zackery Spytz : The PyBytes_FromStringAndSize() call in formatfloat() is not checked for failure. -- components: Interpreter Core messages: 326933 nosy: ZackerySpytz priority: normal severity: normal status: open title: bytesobject.c: Possible null pointer