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 2EA53A0547 for ; 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 228E74003C; Thu, 24 Jun 2021 15:25:57 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id 7F58D4003C 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=1624541155; 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=JDpc8zJMmMG8kVXrd48wpoePtW9xaAqaBqp0Muqg1L55sHXFygu8wNUimOb79eitu74q18 K2NzxdPCNRvfJ/kCReEh3hRMGB4pUqZK4tWUwTkM8z/SFK8gfGbcoHhoFL8IatQT3P33le VNHAqmV4utDoxDoXUrg+jlBEIBre1I4= Received: from mail-vk1-f197.google.com (mail-vk1-f197.google.com [209.85.221.197]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-84-yYucXEn0OlSN-yMqVXi0UA-1; Thu, 24 Jun 2021 09:25:54 -0400 X-MC-Unique: yYucXEn0OlSN-yMqVXi0UA-1 Received: by mail-vk1-f197.google.com with SMTP id p21-20020a0561221155b029024e4cdfe1b3so1843541vko.6 for ; Thu, 24 Jun 2021 06:25:54 -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=TDa5JFQcWqf9GeymOwoq4ldVA5X2F8dnq9zEOI57yujANPSr9g7Kabxk48A2+y8Nss a/3dVU51qycJ5nZ14p+t5DeYUaKf3xSwuI45+E4rXmLewTvpdGTcWrln7wzGXApcUP/p NKAnTbt8jdGSUEsS4q4i+HtSlCmW/eLiVz2MoCzoVEehKUqzpAX83+aaA5ripV1rl/H9 b3heOERZ5rWmLDkBhZUsCKgpxM0xOYfiLZRsLJo/TN7LdWOvTJQWAYafghWBS2Ea2mSb sKvGkXtnOU9wm5yB3ftzhwCoZ4Dv4AYWQDGbq9Zcga1YM+vmih+xdUGcU0ngrqrZqTuY snmw== X-Gm-Message-State: AOAM533W/8T0UdhMeNUSMMXs1HeQ/TXBhsfFyl+JYAECo+Pi+FPIgr0j jq2JDhVMYmrTTUFGz0jt1/wv2qscbeogDWHVIwl9Cse3VjPWntLjU+5b+mCuN2N/5TCJvnlyELI llO968ZTRfBtwJm4dqywlhv4= X-Received: by 2002:a67:fe90:: with SMTP id b16mr2760198vsr.5.1624541153068; 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-stable] [PATCH v3] tests/cmdline: fix memory leaks X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" 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