commit | f7c68e34a4d8368f77ca37f4499e917ec74a9414 | [log] [tgz] |
---|---|---|
author | xf.li <xf.li@mobiletek.cn> | Tue Oct 10 23:18:42 2023 -0700 |
committer | xf.li <xf.li@mobiletek.cn> | Tue Oct 10 23:18:42 2023 -0700 |
tree | c69faf7acddf53ac6aaf58dab050ce0a19f7da8d | |
parent | 12a0aec7cc0474432df55487bcb9d6f0ef189881 [diff] [blame] |
[Bugfix][T106BUG-283]fix the data call ,with the same apntype, can't be listed Only Configure: No Affected branch: master Affected module: unknow Is it affected on both ZXIC and MTK: only ZXIC Self-test: Yes Doc Update: Yes Change-Id: I890acc01b5783a6e344c47097b97244622fad0ab
diff --git a/cap/zx297520v3/src/lynq/lib/liblynq-qser-data/lynq-qser-data.cpp b/cap/zx297520v3/src/lynq/lib/liblynq-qser-data/lynq-qser-data.cpp index b5b2f6c..85767bc 100755 --- a/cap/zx297520v3/src/lynq/lib/liblynq-qser-data/lynq-qser-data.cpp +++ b/cap/zx297520v3/src/lynq/lib/liblynq-qser-data/lynq-qser-data.cpp
@@ -411,6 +411,11 @@ sum_node = sum_node->next; continue; } + else if(strcmp((char *)xmlGetProp(sum_node, "apn_type"), apn->apn_type) == 0) + { + LYERRLOG("apntype already exists\n"); + goto FAILED; + } node_num++; sum_node = sum_node->next; }