From dc9192efc1c502e53e54291a8afda33f56a97d03 Mon Sep 17 00:00:00 2001 From: Rich Megginson Date: Jul 31 2013 17:11:55 +0000 Subject: fix coverity 11915 - dead code - introduced with fix for ticket 346 just get rid of unused variable was_present_null reviewed by: nhosoi (Thanks!) (cherry picked from commit ba70aac1991a04455ba83362e22c33f7f6ab227a) (cherry picked from commit fcf4154b73681752a5ac32954a1d25771a75478e) (cherry picked from commit 67694e7a95f72067bba84e0f6af4ff1c4af89a9e) --- diff --git a/ldap/servers/slapd/attr.c b/ldap/servers/slapd/attr.c index 0dd0393..8d8cf21 100644 --- a/ldap/servers/slapd/attr.c +++ b/ldap/servers/slapd/attr.c @@ -795,7 +795,6 @@ attr_add_valuearray(Slapi_Attr *a, Slapi_Value **vals, const char *dn) int i = 0; int numofvals = 0; int duplicate_index = -1; - int was_present_null = 0; int rc = LDAP_SUCCESS; if (valuearray_isempty(vals)) { @@ -894,7 +893,7 @@ attr_add_valuearray(Slapi_Attr *a, Slapi_Value **vals, const char *dn) duplicate_string, a->a_type, dn ? dn : "", - (was_present_null ? "duplicate new value" : "value exists")); + "value exists"); } return( rc ); }