Comment # 19
on bug 8509
from Evan Huus
Patch 2 looks pretty good. I'm seeing two small issues with it:
- Everywhere you do g_snprintf(str + strpos, MAX_SDP_LEN, *) it should I think
be g_snprintf(str + strpos, MAX_SDP_LEN - strpos, *), since g_snprintf doesn't
otherwise know how much of the beginning of str is being skipped?
- My GCC warns: packet-btsdp.c:1656:29: error: 'value_offset' may be used
uninitialized in this function [-Werror=maybe-uninitialized]
You are receiving this mail because:
- You are watching all bug changes.