I wish I could type. Anyway, this proved it is a good habit to put the NULL

on the left side of comparisons...
This commit is contained in:
Daniel Stenberg 2002-01-18 10:36:25 +00:00
Родитель cbaecca8e9
Коммит 7bfe853af3
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -102,7 +102,7 @@ curl_hash_alloc(int slots, curl_hash_dtor dtor)
curl_hash *h; curl_hash *h;
h = (curl_hash *)malloc(sizeof(curl_hash)); h = (curl_hash *)malloc(sizeof(curl_hash));
if(NULL = h) if(NULL == h)
return NULL; return NULL;
curl_hash_init(h, slots, dtor); curl_hash_init(h, slots, dtor);