diff options
Diffstat (limited to 'libs/libcurl/src/splay.c')
-rw-r--r-- | libs/libcurl/src/splay.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/libcurl/src/splay.c b/libs/libcurl/src/splay.c index 1c1dafb920..bcc0795212 100644 --- a/libs/libcurl/src/splay.c +++ b/libs/libcurl/src/splay.c @@ -107,7 +107,7 @@ struct Curl_tree *Curl_splayinsert(struct curltime i, if(!node) return t; - if(t != NULL) { + if(t) { t = Curl_splay(i, t); if(compare(i, t->key) == 0) { /* There already exists a node in the tree with the very same key. Build |