
This issue trackerhas been migrated toGitHub, and is currentlyread-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.
Created on2008-12-02 20:53 byrhettinger, last changed2022-04-11 14:56 byadmin. This issue is nowclosed.
| Messages (2) | |||
|---|---|---|---|
| msg76781 -(view) | Author: Raymond Hettinger (rhettinger)*![]() | Date: 2008-12-02 20:53 | |
C:\py30>svn diffIndex:Python/traceback.c===================================================================---Python/traceback.c (revision 67476)+++Python/traceback.c (working copy)@@ -171,7 +171,7 @@ if (!PyUnicode_Check(v)) continue; path = _PyUnicode_AsStringAndSize(v, &len);- if (len + 1 + taillen >= (Py_ssize_t)namelen - 1)+ if (len + 1 + (Py_ssize_t)taillen >= (Py_ssize_t)namelen- 1) continue; /* Too long */ strcpy(namebuf, path); if (strlen(namebuf) != len) | |||
| msg76782 -(view) | Author: Raymond Hettinger (rhettinger)*![]() | Date: 2008-12-02 21:00 | |
Fixedr67477. | |||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022-04-11 14:56:42 | admin | set | github: 48745 |
| 2008-12-02 21:00:34 | rhettinger | set | status: open -> closed resolution: fixed messages: +msg76782 |
| 2008-12-02 20:53:08 | rhettinger | create | |