Skip to content
Snippets Groups Projects
Commit c746cc2d authored by Botond Baranyi's avatar Botond Baranyi
Browse files

Fixed RAW encoding of -2147483648 (bug 533067)


Change-Id: I5984f0dea8ca8cd45589915d7a6b180d34286a71
Signed-off-by: default avatarBotond Baranyi <botond.baranyi@ericsson.com>
parent 78a82971
No related branches found
No related tags found
No related merge requests found
...@@ -1177,7 +1177,7 @@ int INTEGER::RAW_encode(const TTCN_Typedescriptor_t& p_td, RAW_enc_tree& myleaf) ...@@ -1177,7 +1177,7 @@ int INTEGER::RAW_encode(const TTCN_Typedescriptor_t& p_td, RAW_enc_tree& myleaf)
} }
else { // not IntX, use the field length else { // not IntX, use the field length
length = (p_td.raw->fieldlength + 7) / 8; length = (p_td.raw->fieldlength + 7) / 8;
if (min_bits(value) > p_td.raw->fieldlength) { if (min_bits(value, neg_sgbit) > p_td.raw->fieldlength) {
TTCN_EncDec_ErrorContext::error(TTCN_EncDec::ET_LEN_ERR, TTCN_EncDec_ErrorContext::error(TTCN_EncDec::ET_LEN_ERR,
"There are insufficient bits to encode '%s' : ", p_td.name); "There are insufficient bits to encode '%s' : ", p_td.name);
value = 0; // substitute with zero value = 0; // substitute with zero
......
...@@ -309,13 +309,16 @@ RAW_enc_tree* RAW_enc_tree::get_node(RAW_enc_tr_pos &req_pos) ...@@ -309,13 +309,16 @@ RAW_enc_tree* RAW_enc_tree::get_node(RAW_enc_tr_pos &req_pos)
* @return the number of bits needed to represent the given integer * @return the number of bits needed to represent the given integer
* in sign+magnitude * in sign+magnitude
*/ */
int min_bits(int a) int min_bits(int a, bool signbit)
{ {
if (a == INT_MIN) {
return sizeof(int) * 8 + signbit;
}
register int bits = 0; register int bits = 0;
register int tmp = a; register int tmp = a;
if (a < 0) { if (a < 0) {
bits = 1; bits = 1;
tmp = -a; tmp = -a; // doesn't work on INT_MIN
} }
while (tmp != 0) { while (tmp != 0) {
bits++; bits++;
......
...@@ -52,7 +52,7 @@ extern const unsigned char BitMaskTable[9]; ...@@ -52,7 +52,7 @@ extern const unsigned char BitMaskTable[9];
class RAW_enc_tree; class RAW_enc_tree;
struct TTCN_Typedescriptor_t; struct TTCN_Typedescriptor_t;
struct TTCN_TEXTdescriptor_t; struct TTCN_TEXTdescriptor_t;
int min_bits(int a); int min_bits(int a, bool signbit);
int min_bits(BIGNUM *a); int min_bits(BIGNUM *a);
enum ext_bit_t{ enum ext_bit_t{
EXT_BIT_NO, /**< No extension bit */ EXT_BIT_NO, /**< No extension bit */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment