diff options
Diffstat (limited to 'math/snns/files/patch-kernel__sources__kr_mem.c')
| -rw-r--r-- | math/snns/files/patch-kernel__sources__kr_mem.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/math/snns/files/patch-kernel__sources__kr_mem.c b/math/snns/files/patch-kernel__sources__kr_mem.c new file mode 100644 index 000000000000..7e50a1d85881 --- /dev/null +++ b/math/snns/files/patch-kernel__sources__kr_mem.c @@ -0,0 +1,28 @@ +--- kernel/sources/kr_mem.c.orig Sat Sep 28 20:55:39 2002 ++++ kernel/sources/kr_mem.c Sat Sep 28 20:56:45 2002 +@@ -26,6 +26,7 @@ + #include <values.h> + #else + #include <math.h> ++#include <limits.h> + #endif + + +@@ -1023,7 +1024,7 @@ + + if ( (n_ptr = krm_NTableSymbolSearch( symbol_name, symbol_type ) ) != NULL) + { /* symbol is already in the name table */ +- if ((n_ptr->ref_count) < ((unsigned short) MAXSHORT)) { ++ if ((n_ptr->ref_count) < ((unsigned short) SHRT_MAX)) { + n_ptr->ref_count++; + } + return( n_ptr->Entry.symbol ); +@@ -1052,7 +1053,7 @@ + if (symbol_name == NULL) return; + if ( (n_ptr = krm_NTableSymbolSearch( symbol_name, symbol_type ) ) != NULL) + { /* symbol is in the name table */ +- if ((n_ptr->ref_count) < ((unsigned short) MAXSHORT)) ++ if ((n_ptr->ref_count) < ((unsigned short) SHRT_MAX)) + { /* No. of references to this symbol don't exceed the max. reference + count. This means it is possible to delete the symbol if the + reference count is zero. |
