comparison configmix/_speedups.c @ 627:e3a23e9242a0

NULL instead of 0
author Franz Glasner <fzglas.hg@dom66.de>
date Thu, 13 Jan 2022 22:27:20 +0100
parents 8d2d5d54ff3c
children 33264c660fca
comparison
equal deleted inserted replaced
626:b54f2932415f 627:e3a23e9242a0
1013 } 1013 }
1014 } 1014 }
1015 } 1015 }
1016 1016
1017 result = PyList_New(0); 1017 result = PyList_New(0);
1018 if (result == 0) { 1018 if (result == NULL) {
1019 return NULL; 1019 return NULL;
1020 } 1020 }
1021 1021
1022 rest = 0; 1022 rest = 0;
1023 use_cache = 1; 1023 use_cache = 1;