The first time a value_string_ext() is accessed, _match_strval_ext_init() is
used before the real match function is called.  This function was not expanded
to take an idx parameter (in rev 35451).  It compiled only because the function:
  a) previously did not match _value_string_match_t
  b) and the difference was being cast away when assigning _match_strval to it
     (So the fact that the index parameter was not added was also ignored.)

To fix the problem, give _match_strval_ext_init() and index parameter and use
it instead of a dummy variable when calling the real match function.  That way
the first call to match_strval_ext_idx() will return an actual (initialized)
index.

To prevent the problem in the future, make the vse argument to
_match_strval_ext_init() const *and then cast away the constness* so the
function can modify the vse.

svn path=/trunk/; revision=35508
This commit is contained in:
Jeff Morriss 2011-01-12 17:20:52 +00:00
parent 46f62f1b49
commit 45920c1e15
2 changed files with 18 additions and 10 deletions

View File

@ -142,7 +142,7 @@ value_string_ext_new(value_string *vs, guint vs_tot_num_entries, gchar *vs_name)
vse->_vs_p = vs;
vse->_vs_num_entries = vs_tot_num_entries - 1; /* remember the actual number of entries */
vse->_vs_first_value = 0; /* initialized in _match_strval_ext_init */
vse->_vs_match = (_value_string_match_t) _match_strval_ext_init;
vse->_vs_match = _match_strval_ext_init;
vse->_vs_name = vs_name;
return vse;
}
@ -211,7 +211,7 @@ _match_strval_linear(const guint32 val, const value_string_ext *vse, gint *idx)
guint i;
for (i=0; i<vse->_vs_num_entries; i++) {
if (vs_p[i].value == val) {
*idx = i;
*idx = i;
return vs_p[i].strptr;
}
}
@ -227,7 +227,7 @@ _match_strval_index(const guint32 val, const value_string_ext *vse, gint *idx)
i = val - vse->_vs_first_value;
if (i < vse->_vs_num_entries) {
g_assert (val == vse->_vs_p[i].value);
*idx = i;
*idx = i;
return vse->_vs_p[i].strptr;
}
*idx = -1;
@ -266,9 +266,17 @@ _match_strval_bsearch(const guint32 val, const value_string_ext *vse, gint *idx)
by {0, NULL};
*/
const gchar *
_match_strval_ext_init(const guint32 val, value_string_ext *vse)
_match_strval_ext_init(const guint32 val, const value_string_ext *a_vse, gint *idx)
{
gint ignore_me;
/* Cast away the constness!
* It's better if the prototype for this function matches the other
* _match_strval_* functions (so we don't have to cast it when storing it
* in _match_strval so the compiler will notice if the prototypes get out
* of sync), but the init function is unique in that it does actually
* modify the vse.
*/
value_string_ext *vse = (value_string_ext *)a_vse;
const value_string *vs_p = vse->_vs_p;
const guint vs_num_entries = vse->_vs_num_entries;
@ -318,7 +326,7 @@ _match_strval_ext_init(const guint32 val, value_string_ext *vse)
break;
}
return vse->_vs_match(val, vse, &ignore_me);
return vse->_vs_match(val, vse, idx);
}
/* (Fcns for use by proto_registrar_dump_values() [See proto.c]) */
@ -326,7 +334,7 @@ gboolean
value_string_ext_validate(value_string_ext *vse) {
if (vse == NULL)
return FALSE;
if ((vse->_vs_match == (_value_string_match_t) _match_strval_ext_init) ||
if ((vse->_vs_match == _match_strval_ext_init) ||
(vse->_vs_match == _match_strval_linear) ||
(vse->_vs_match == _match_strval_bsearch) ||
(vse->_vs_match == _match_strval_index))

View File

@ -136,7 +136,7 @@ gboolean value_string_ext_validate(value_string_ext *vse);
gchar *value_string_ext_match_type_str(value_string_ext *vse);
/* --- --- */
extern const gchar *_match_strval_ext_init(const guint32 val, value_string_ext *vse);
extern const gchar *_match_strval_ext_init(const guint32 val, const value_string_ext *vse, gint *idx);
#define VALUE_STRING_EXT_INIT(x) { (_value_string_match_t) _match_strval_ext_init, 0, array_length(x)-1, x, #x }
/* Create a value_string_ext given a ptr to a value_string array and the total number of entries. */