PVFS: Fixup commit a9535243c5

This commit is contained in:
João Valverde 2022-10-30 22:56:03 +00:00
parent 6fae1c6a1c
commit 179ecc114c
1 changed files with 2 additions and 2 deletions

View File

@ -2367,8 +2367,8 @@ dissect_pvfs2_getconfig_response(tvbuff_t *tvb, proto_tree *parent_tree,
*pentry= '\0';
tmp_entry = get_ascii_string(pinfo->pool, pentry, entry_length);
tmp_entry_length = entry_length;
tmp_entry = get_ascii_string(pinfo->pool, entry, entry_length);
tmp_entry_length = (guint32)strlen(tmp_entry);
/* Remove all whitespace from front of entry */
while ((tmp_entry_length > 0) && (!g_ascii_isalnum(*tmp_entry)) &&