mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
bpo-32030: Cleanup "path config" code (#4663)
* Rename PyPathConfig structure to _PyPathConfig and move it to Include/internal/pystate.h * Rename path_config to _Py_path_config * _PyPathConfig: Rename program_name field to program_full_path * Add assert(str != NULL); to _PyMem_RawWcsdup(), _PyMem_RawStrdup() and _PyMem_Strdup(). * Rename calculate_path() to pathconfig_global_init(). The function now does nothing if it's already initiallized.
This commit is contained in:
parent
8f5c28b193
commit
b64de46aae
4 changed files with 136 additions and 137 deletions
|
@ -564,6 +564,8 @@ PyMem_Free(void *ptr)
|
|||
wchar_t*
|
||||
_PyMem_RawWcsdup(const wchar_t *str)
|
||||
{
|
||||
assert(str != NULL);
|
||||
|
||||
size_t len = wcslen(str);
|
||||
if (len > (size_t)PY_SSIZE_T_MAX / sizeof(wchar_t) - 1) {
|
||||
return NULL;
|
||||
|
@ -582,13 +584,12 @@ _PyMem_RawWcsdup(const wchar_t *str)
|
|||
char *
|
||||
_PyMem_RawStrdup(const char *str)
|
||||
{
|
||||
size_t size;
|
||||
char *copy;
|
||||
|
||||
size = strlen(str) + 1;
|
||||
copy = PyMem_RawMalloc(size);
|
||||
if (copy == NULL)
|
||||
assert(str != NULL);
|
||||
size_t size = strlen(str) + 1;
|
||||
char *copy = PyMem_RawMalloc(size);
|
||||
if (copy == NULL) {
|
||||
return NULL;
|
||||
}
|
||||
memcpy(copy, str, size);
|
||||
return copy;
|
||||
}
|
||||
|
@ -596,13 +597,12 @@ _PyMem_RawStrdup(const char *str)
|
|||
char *
|
||||
_PyMem_Strdup(const char *str)
|
||||
{
|
||||
size_t size;
|
||||
char *copy;
|
||||
|
||||
size = strlen(str) + 1;
|
||||
copy = PyMem_Malloc(size);
|
||||
if (copy == NULL)
|
||||
assert(str != NULL);
|
||||
size_t size = strlen(str) + 1;
|
||||
char *copy = PyMem_Malloc(size);
|
||||
if (copy == NULL) {
|
||||
return NULL;
|
||||
}
|
||||
memcpy(copy, str, size);
|
||||
return copy;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue