Acked-by: Donald Sharp <[email protected]>

On 6/18/15 10:53 PM, Wenjian Ma wrote:
Because  operator "!" has higher priority  than "&&",
So we put the "&&" expression in "()" to check both getp and endp.
---
  lib/stream.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/stream.c b/lib/stream.c
index e13da08..9c26fea 100644
--- a/lib/stream.c
+++ b/lib/stream.c
@@ -60,7 +60,7 @@
#define STREAM_VERIFY_SANE(S) \
    do { \
-    if ( !(GETP_VALID(S, (S)->getp)) && ENDP_VALID(S, (S)->endp) ) \
+    if ( !(GETP_VALID(S, (S)->getp) && ENDP_VALID(S, (S)->endp)) ) \
        STREAM_WARN_OFFSETS(S); \
      assert ( GETP_VALID(S, (S)->getp) ); \
      assert ( ENDP_VALID(S, (S)->endp) ); \


_______________________________________________
Quagga-dev mailing list
[email protected]
https://lists.quagga.net/mailman/listinfo/quagga-dev

Reply via email to