Remove memory overlap when updating rild variable

Do not call RIL_setRilSocketName() as this copies string to itself .
new value is already copied to rild variable.

Bug: 62249769
Change-Id: I3cf03ee1b3f7024b0c8ef0495813def10519ba70
diff --git a/rild/rild.c b/rild/rild.c
index ce04040..a079d3c 100644
--- a/rild/rild.c
+++ b/rild/rild.c
@@ -196,7 +196,6 @@
     if (strncmp(clientId, "0", MAX_CLIENT_ID_LENGTH)) {
         strncpy(ril_service_name, ril_service_name_base, MAX_SERVICE_NAME_LENGTH);
         strncat(ril_service_name, clientId, MAX_SERVICE_NAME_LENGTH);
-        RIL_setServiceName(ril_service_name);
     }
 
     if (rilLibPath == NULL) {