coverty: fix dead code warning

pull/2053/head
Victor Julien 9 years ago
parent dd86ac07f7
commit db4ec46f18

@ -126,10 +126,10 @@ int LiveSafeDeviceName(const char *devname, char *newdevname, size_t destlen)
* max length of pthread names (15 chars) and we use 3 chars
* for the threadname indicator eg. "W#-" and one-two chars for
* the thread number. And if the destination buffer is under
* 6 chars there is point in shortening it since we must at
* lest enter two periodes (.) into the string..
* 6 chars there is no point in shortening it since we must at
* least enter two periods (.) into the string.
*/
if ((destlen-1) > 10 && (destlen-1) < 6) {
if ((destlen-1) > 10 || (destlen-1) < 6) {
return 1;
}

Loading…
Cancel
Save