Commit 996922de authored by Jeff Cody's avatar Jeff Cody
Browse files

block/curl: fix minor memory leaks

parent 2d25964d
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -857,6 +857,9 @@ out_noclean:
    qemu_mutex_destroy(&s->mutex);
    g_free(s->cookie);
    g_free(s->url);
    g_free(s->username);
    g_free(s->proxyusername);
    g_free(s->proxypassword);
    qemu_opts_del(opts);
    return -EINVAL;
}
@@ -955,6 +958,9 @@ static void curl_close(BlockDriverState *bs)

    g_free(s->cookie);
    g_free(s->url);
    g_free(s->username);
    g_free(s->proxyusername);
    g_free(s->proxypassword);
}

static int64_t curl_getlength(BlockDriverState *bs)