From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bryce Harrington Subject: [PATCH 1/8] xfree86: (Cleanup) Close fd if drm interface 1.4 could not be set. Date: Fri, 15 Mar 2013 11:02:51 -0700 Message-ID: <1363370578-30443-2-git-send-email-bryce@canonical.com> References: <1363370578-30443-1-git-send-email-bryce@canonical.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from smtp.outflux.net (smtp.outflux.net [198.145.64.163]) by gabe.freedesktop.org (Postfix) with ESMTP id E0C14E6AD1 for ; Fri, 15 Mar 2013 11:03:16 -0700 (PDT) In-Reply-To: <1363370578-30443-1-git-send-email-bryce@canonical.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: intel-gfx-bounces+gcfxdi-intel-gfx=m.gmane.org@lists.freedesktop.org Errors-To: intel-gfx-bounces+gcfxdi-intel-gfx=m.gmane.org@lists.freedesktop.org To: intel-gfx@lists.freedesktop.org, chris@chris-wilson.co.uk Cc: Bryce Harrington List-Id: intel-gfx@lists.freedesktop.org Signed-off-by: Bryce Harrington --- hw/xfree86/os-support/linux/lnx_platform.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/xfree86/os-support/linux/lnx_platform.c b/hw/xfree86/os-support/linux/lnx_platform.c index 76f5583..69a5b8c 100644 --- a/hw/xfree86/os-support/linux/lnx_platform.c +++ b/hw/xfree86/os-support/linux/lnx_platform.c @@ -34,6 +34,7 @@ get_drm_info(struct OdevAttributes *attribs, char *path) sv.drm_dd_minor = -1; /* Don't care */ if (drmSetInterfaceVersion(fd, &sv)) { ErrorF("setversion 1.4 failed\n"); + close(fd); return FALSE; } -- 1.7.9.5