To follow the HFP specification we must ensure that network operator name will have at maximum 16 characters. In current implementation we do not check this constraint. This patch fix this. Now operator name with more than 16 characters will be truncated to 16 characters. --- audio/telephony-maemo6.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/audio/telephony-maemo6.c b/audio/telephony-maemo6.c index 1aac034..bbd2d2f 100644 --- a/audio/telephony-maemo6.c +++ b/audio/telephony-maemo6.c @@ -1498,8 +1498,7 @@ static void update_operator_name(const char *name) return; g_free(net.operator_name); - net.operator_name = g_strdup(name); - + net.operator_name = g_strndup(name, 16); DBG("telephony-maemo6: operator name updated: %s", name); } -- 1.7.0.4 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html