Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
0e2d3cf2
Commit
0e2d3cf2
authored
Jul 07, 2013
by
Victor Stinner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #18203: Replace malloc() with PyMem_Malloc() in _PySequence_BytesToCharpArray()
parent
c6632e7e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
8 deletions
+11
-8
Objects/abstract.c
Objects/abstract.c
+11
-8
No files found.
Objects/abstract.c
View file @
0e2d3cf2
...
...
@@ -2721,8 +2721,8 @@ PyIter_Next(PyObject *iter)
* NULL terminated string pointers with a NULL char* terminating the array.
* (ie: an argv or env list)
*
* Memory allocated for the returned list is allocated using
malloc() and MUST
*
be freed by the caller using a free() loop or
_Py_FreeCharPArray().
* Memory allocated for the returned list is allocated using
PyMem_Malloc()
*
and MUST be freed by
_Py_FreeCharPArray().
*/
char
*
const
*
_PySequence_BytesToCharpArray
(
PyObject
*
self
)
...
...
@@ -2730,6 +2730,7 @@ _PySequence_BytesToCharpArray(PyObject* self)
char
**
array
;
Py_ssize_t
i
,
argc
;
PyObject
*
item
=
NULL
;
Py_ssize_t
size
;
argc
=
PySequence_Size
(
self
);
if
(
argc
==
-
1
)
...
...
@@ -2742,7 +2743,7 @@ _PySequence_BytesToCharpArray(PyObject* self)
return
NULL
;
}
array
=
m
alloc
((
argc
+
1
)
*
sizeof
(
char
*
));
array
=
PyMem_M
alloc
((
argc
+
1
)
*
sizeof
(
char
*
));
if
(
array
==
NULL
)
{
PyErr_NoMemory
();
return
NULL
;
...
...
@@ -2761,11 +2762,13 @@ _PySequence_BytesToCharpArray(PyObject* self)
array
[
i
]
=
NULL
;
goto
fail
;
}
array
[
i
]
=
strdup
(
data
);
size
=
PyBytes_GET_SIZE
(
item
)
+
1
;
array
[
i
]
=
PyMem_Malloc
(
size
);
if
(
!
array
[
i
])
{
PyErr_NoMemory
();
goto
fail
;
}
memcpy
(
array
[
i
],
data
,
size
);
Py_DECREF
(
item
);
}
array
[
argc
]
=
NULL
;
...
...
@@ -2785,7 +2788,7 @@ _Py_FreeCharPArray(char *const array[])
{
Py_ssize_t
i
;
for
(
i
=
0
;
array
[
i
]
!=
NULL
;
++
i
)
{
f
ree
(
array
[
i
]);
PyMem_F
ree
(
array
[
i
]);
}
f
ree
((
void
*
)
array
);
PyMem_F
ree
((
void
*
)
array
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment