Staging
v0.5.1
https://github.com/python/cpython
Revision 34bb88dc5bc447832db8c7ccdc173311e0685eab authored by Xiang Zhang on 09 March 2018, 02:21:58 UTC, committed by GitHub on 09 March 2018, 02:21:58 UTC
1 parent 55d5bfb
Raw File
Tip revision: 34bb88dc5bc447832db8c7ccdc173311e0685eab authored by Xiang Zhang on 09 March 2018, 02:21:58 UTC
Clear possible exception before calling PyTuple_Pack in IMPORT_NAME (GH-6033)
Tip revision: 34bb88d
strdup.c
/* strdup() replacement (from stdwin, if you must know) */

#include "pgenheaders.h"

char *
strdup(const char *str)
{
	if (str != NULL) {
		register char *copy = malloc(strlen(str) + 1);
		if (copy != NULL)
			return strcpy(copy, str);
	}
	return NULL;
}
back to top