reverted rule_count back to size_t, as it is passed as pointer (fixes 64bit issues)

This commit is contained in:
Martin Willi
2009-06-19 10:01:04 +02:00
parent 126f2130fb
commit f53b7e00c2
2 changed files with 8 additions and 7 deletions
+3 -2
View File
@@ -371,7 +371,8 @@ static status_t parse_payload(private_parser_t *this,
{
payload_t *pld;
void *output;
int rule_count, payload_length = 0, spi_size = 0, attribute_length = 0;
size_t rule_count;
int payload_length = 0, spi_size = 0, attribute_length = 0;
u_int16_t ts_type = 0;
bool attribute_format = FALSE;
int rule_number;
@@ -396,7 +397,7 @@ static status_t parse_payload(private_parser_t *this,
output = pld;
/* parse the payload with its own rulse */
pld->get_encoding_rules(pld, &(this->rules), &rule_count);
pld->get_encoding_rules(pld, &this->rules, &rule_count);
for (rule_number = 0; rule_number < rule_count; rule_number++)
{
rule = &(this->rules[rule_number]);