| 1321 | */ |
| 1322 | |
| 1323 | void |
| 1324 | cupsdSetString(char **s, /* O - New string */ |
| 1325 | const char *v) /* I - String value */ |
| 1326 | { |
| 1327 | if (!s || *s == v) |
| 1328 | return; |
| 1329 | |
| 1330 | if (*s) |
| 1331 | free(*s); |
| 1332 | |
| 1333 | if (v) |
| 1334 | *s = strdup(v); |
| 1335 | else |
| 1336 | *s = NULL; |
| 1337 | } |
| 1338 | |
| 1339 | |
| 1340 | /* |
no outgoing calls
no test coverage detected