]> git.kaiwu.me - nginx.git/commitdiff
Removed casts from ngx_memcmp() macro.
authorMaxim Dounin <mdounin@mdounin.ru>
Wed, 30 Nov 2022 15:01:53 +0000 (18:01 +0300)
committerMaxim Dounin <mdounin@mdounin.ru>
Wed, 30 Nov 2022 15:01:53 +0000 (18:01 +0300)
Casts are believed to be not needed, since memcmp() has "const void *"
arguments since introduction of the "void" type in C89.  And on pre-C89
platforms nginx is unlikely to compile without warnings anyway, as there
are no casts in memcpy() and memmove() calls.

These casts were added in 1648:89a47f19b9ec without any details on why they
were added, and Igor does not remember details either.  The most plausible
explanation is that they were copied from ngx_strcmp() and were not really
needed even at that time.

Prodded by Alejandro Colomar.

src/core/ngx_string.h

index 4378b649c6a7e128591aeabf3164a23399304f5d..713eb42a70427c0112379a86e8ba669eaeddc322 100644 (file)
@@ -145,7 +145,7 @@ ngx_copy(u_char *dst, u_char *src, size_t len)
 
 
 /* msvc and icc7 compile memcmp() to the inline loop */
-#define ngx_memcmp(s1, s2, n)  memcmp((const char *) s1, (const char *) s2, n)
+#define ngx_memcmp(s1, s2, n)     memcmp(s1, s2, n)
 
 
 u_char *ngx_cpystrn(u_char *dst, u_char *src, size_t n);