]> git.ozlabs.org Git - petitboot/blobdiff - ui/common/discover-client.c
Simplify kexec
[petitboot] / ui / common / discover-client.c
index b1ef440a9127e927f3e6456fb25688248f05ecc7..e8ce4dd91bda53c88230441d32815eb20ad44e0f 100644 (file)
@@ -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);