hiredis: Update to 0.14.0

Added PKG_BUILD_PARALLEL for faster building.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev
2018-10-08 13:47:18 -07:00
parent 988a9886d4
commit 8e7a7cf544
2 changed files with 4 additions and 16 deletions
-13
View File
@@ -1,13 +0,0 @@
Index: hiredis-0.13.3/hiredis.h
===================================================================
--- hiredis-0.13.3.orig/hiredis.h
+++ hiredis-0.13.3/hiredis.h
@@ -98,7 +98,7 @@
* then GNU strerror_r returned an internal static buffer and we \
* need to copy the result into our private buffer. */ \
if (err_str != (buf)) { \
- buf[(len)] = '\0'; \
+ (buf)[(len)] = '\0'; \
strncat((buf), err_str, ((len) - 1)); \
} \
} while (0)