aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/services/dropbear/patches/140-disable_assert.patch
blob: 667d69cb38167f7df05f2f17ce0c6af1cdab18ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--- a/dbutil.h
+++ b/dbutil.h
@@ -88,7 +88,11 @@ int m_str_to_uint(const char* str, unsig
 #define DEF_MP_INT(X) mp_int X = {0, 0, 0, NULL}
 
 /* Dropbear assertion */
-#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
+#ifndef DROPBEAR_ASSERT_ENABLED
+#define DROPBEAR_ASSERT_ENABLED 0
+#endif
+
+#define dropbear_assert(X) do { if (DROPBEAR_ASSERT_ENABLED && !(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
 
 /* Returns 0 if a and b have the same contents */
 int constant_time_memcmp(const void* a, const void *b, size_t n);