summaryrefslogtreecommitdiffstats
path: root/ui/common/discover-client.c
diff options
context:
space:
mode:
Diffstat (limited to 'ui/common/discover-client.c')
-rw-r--r--ui/common/discover-client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/common/discover-client.c b/ui/common/discover-client.c
index b1ef440..e8ce4dd 100644
--- a/ui/common/discover-client.c
+++ b/ui/common/discover-client.c
@@ -111,7 +111,7 @@ static void device_remove(struct discover_client *client, const char *id)
/* remove the device from the client's device array */
client->n_devices--;
memmove(&client->devices[i], &client->devices[i+1],
- client->n_devices - i);
+ (client->n_devices - i) * sizeof(client->devices[0]));
client->devices = talloc_realloc(client, client->devices,
struct device *, client->n_devices);
OpenPOWER on IntegriCloud