From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 56169A0547; Thu, 24 Jun 2021 15:25:57 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 459ED410E2; Thu, 24 Jun 2021 15:25:57 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by mails.dpdk.org (Postfix) with ESMTP id A418A40040 for ; Thu, 24 Jun 2021 15:25:55 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1624541154; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=ED1JYKKy67I5NpoNJqbS1425p4nKXzOsuHPzTzgTNOY=; b=TCvZAsmK+CZXPM1Z1OTXoO5GaVOp4fA1sWfe7U72dXhX/hvJv/5M9rbR92VdK6oNa1asNa rpS7QpsGcRQA7IERAsatTr8rNHVzERfMc5G7efbQcDy4gLhKP8Buy76Lej+ERLG3vDz35/ kGN8UKi9jbiZftLB0ELUSJ/ordJKmwc= Received: from mail-vs1-f70.google.com (mail-vs1-f70.google.com [209.85.217.70]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-559-0fmX5DZvP4O_gElnq5Y0QQ-1; Thu, 24 Jun 2021 09:25:53 -0400 X-MC-Unique: 0fmX5DZvP4O_gElnq5Y0QQ-1 Received: by mail-vs1-f70.google.com with SMTP id l124-20020a6770820000b029025d866a613cso1183426vsc.11 for ; Thu, 24 Jun 2021 06:25:53 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=ED1JYKKy67I5NpoNJqbS1425p4nKXzOsuHPzTzgTNOY=; b=l9z7giOqIZcfl6z5Sx/wJWhN7CcYWr3lvRdpEKGMcBXZRrj3xVcum/eGhiacwYdw29 EK/bTu9TaCdOyWexiwRw5a/+yqsEm+713p3AzXGgKN/uQmXYR6Q0JPz+6FqBWvNrO2i/ WZsCryjtj/C3k6OyGE9Ab6hXLsD+wYodeNEs2/EaP4C46doBA6WAMDl9rR2M0vkitXD1 51puSSRPyZVo6eU8zc0YOZg7ytegI65O4EjVQsQv+uEnO0IcO+aPVxnp6OKHzSuRzZeB JTxibeHqV0JRhDOm9pou3sIWZSCMl98uEKZeunk7onJ8SaKsVLL1DCGVw2G8V5+H+rTa SeFQ== X-Gm-Message-State: AOAM530fYXXpSj8h8Su/1VnD1JGzv0Nq6GR9jL0O4r0ZolfqIo0jtdyb jTj4yGHtgiriwwrw641RJSXC5mmuHm8oS7ZN+sEsdE3VVd5Hcg8Wl4ViTtM33ZbgNFDV+J4jcO7 zKlqpRO/IgbKsGImxC7Q= X-Received: by 2002:a67:fe90:: with SMTP id b16mr2760199vsr.5.1624541153069; Thu, 24 Jun 2021 06:25:53 -0700 (PDT) X-Google-Smtp-Source: ABdhPJyd+nQYH8W59TGpb05iZuHyiKofA5HjWll6z8GCUghRYvQqNj0rziTwAm8p/BahYkHcS8liq0iNmIg30Md2grI= X-Received: by 2002:a67:fe90:: with SMTP id b16mr2760179vsr.5.1624541152874; Thu, 24 Jun 2021 06:25:52 -0700 (PDT) MIME-Version: 1.0 References: <20210616180724.355217-1-ohilyard@iol.unh.edu> <20210623180645.91942-1-ohilyard@iol.unh.edu> In-Reply-To: <20210623180645.91942-1-ohilyard@iol.unh.edu> From: David Marchand Date: Thu, 24 Jun 2021 15:25:41 +0200 Message-ID: To: Owen Hilyard Cc: Olivier Matz , dev , dpdk stable Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=dmarchan@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH v3] tests/cmdline: fix memory leaks X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Wed, Jun 23, 2021 at 8:06 PM wrote: > > From: Owen Hilyard > > Fixes for a few memory leaks in the cmdline_autotest unit test. > > All of the leaks were related to not freeing the commandline struct > after testing had completed. > > Fixes: dbb860e03e ("cmdline: tests") Updated sha1. Cc: stable@dpdk.org > > Signed-off-by: Owen Hilyard > Reviewed-by: David Marchand Acked-by: Olivier Matz Applied, thanks. -- David Marchand