aboutsummaryrefslogtreecommitdiffstats
path: root/asn1
diff options
context:
space:
mode:
authorChris Maynard <Christopher.Maynard@GTECH.COM>2013-07-01 06:15:37 +0000
committerChris Maynard <Christopher.Maynard@GTECH.COM>2013-07-01 06:15:37 +0000
commit997c6c7d8e8dda15b2523c09556027508bcab80c (patch)
tree46e2602db3d44efcd9b6f66412952cf5eb92aea2 /asn1
parent48fdfdb9d39362912cada0bc9ca0ea3f04607c6e (diff)
Fix Coverity CID 712348 (Unused pointer value).
svn path=/trunk/; revision=50288
Diffstat (limited to 'asn1')
-rw-r--r--asn1/nbap/nbap.cnf2
1 files changed, 1 insertions, 1 deletions
diff --git a/asn1/nbap/nbap.cnf b/asn1/nbap/nbap.cnf
index 6821f5148f..61325200a5 100644
--- a/asn1/nbap/nbap.cnf
+++ b/asn1/nbap/nbap.cnf
@@ -2090,7 +2090,7 @@ nbap_com_context_id_t *cur_val;
/*If both are avaible we can update the map*/
if(crcn_context_present){
- if( (cur_val=(nbap_com_context_id_t *)g_tree_lookup(com_context_map, GINT_TO_POINTER((gint)node_b_com_context_id))) == NULL ){
+ if( (nbap_com_context_id_t *)g_tree_lookup(com_context_map, GINT_TO_POINTER((gint)node_b_com_context_id)) == NULL ){
cur_val = g_new(nbap_com_context_id_t,1);
cur_val->crnc_context = com_context_id;