]> granicus.if.org Git - python/commitdiff
Merged revisions 75220 via svnmerge from
authorMark Dickinson <dickinsm@gmail.com>
Sat, 3 Oct 2009 20:15:21 +0000 (20:15 +0000)
committerMark Dickinson <dickinsm@gmail.com>
Sat, 3 Oct 2009 20:15:21 +0000 (20:15 +0000)
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r75220 | mark.dickinson | 2009-10-03 21:13:37 +0100 (Sat, 03 Oct 2009) | 1 line

  Use size_t instead of int for a PyMem_MALLOC argument;  silences a gcc 'comparison always false' warning.
........

Objects/capsule.c

index 3d2d626adec0b08ba0b8bd367f016ad70d36f33a..e25af6c2aa8f3b79c7b8910fbcc788efba7da7ef 100644 (file)
@@ -197,7 +197,7 @@ PyCapsule_Import(const char *name, int no_block)
     PyObject *object = NULL;
     void *return_value = NULL;
     char *trace;
-    int name_length = (strlen(name) + 1) * sizeof(char);
+    size_t name_length = (strlen(name) + 1) * sizeof(char);
     char *name_dup = (char *)PyMem_MALLOC(name_length);
 
     if (!name_dup) {