Show More
@@ -28,12 +28,10 b' typedef struct {' | |||
|
28 | 28 | PyObject *dict; |
|
29 | 29 | } dirsObject; |
|
30 | 30 | |
|
31 |
static inline Py_ssize_t _finddir( |
|
|
31 | static inline Py_ssize_t _finddir(const char *path, Py_ssize_t pos) | |
|
32 | 32 | { |
|
33 | const char *s = PyString_AS_STRING(path); | |
|
34 | ||
|
35 | 33 | while (pos != -1) { |
|
36 |
if ( |
|
|
34 | if (path[pos] == '/') | |
|
37 | 35 | break; |
|
38 | 36 | pos -= 1; |
|
39 | 37 | } |
@@ -48,7 +46,7 b' static int _addpath(PyObject *dirs, PyOb' | |||
|
48 | 46 | PyObject *key = NULL; |
|
49 | 47 | int ret = -1; |
|
50 | 48 | |
|
51 | while ((pos = _finddir(path, pos - 1)) != -1) { | |
|
49 | while ((pos = _finddir(cpath, pos - 1)) != -1) { | |
|
52 | 50 | PyObject *val; |
|
53 | 51 | |
|
54 | 52 | /* It's likely that every prefix already has an entry |
@@ -100,7 +98,7 b' static int _delpath(PyObject *dirs, PyOb' | |||
|
100 | 98 | PyObject *key = NULL; |
|
101 | 99 | int ret = -1; |
|
102 | 100 | |
|
103 | while ((pos = _finddir(path, pos - 1)) != -1) { | |
|
101 | while ((pos = _finddir(cpath, pos - 1)) != -1) { | |
|
104 | 102 | PyObject *val; |
|
105 | 103 | |
|
106 | 104 | key = PyString_FromStringAndSize(cpath, pos); |
General Comments 0
You need to be logged in to leave comments.
Login now