From: Jani Nikula <jani.nikula@linux.intel.com>
To: Eric Engestrom <eric.engestrom@imgtec.com>,
dri-devel@lists.freedesktop.org
Subject: Re: [PATCH libdrm 1/3] xf86drm: replace sprintf()+strdup() with asprintf()
Date: Mon, 26 Mar 2018 16:57:20 +0300 [thread overview]
Message-ID: <87fu4ney7z.fsf@intel.com> (raw)
In-Reply-To: <20180326102648.1754-1-eric.engestrom@imgtec.com>
On Mon, 26 Mar 2018, Eric Engestrom <eric.engestrom@imgtec.com> wrote:
> Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com>
> ---
> xf86drm.c | 28 ++++++++++++++--------------
> 1 file changed, 14 insertions(+), 14 deletions(-)
>
> diff --git a/xf86drm.c b/xf86drm.c
> index 3a9d0ed2cc9b196ae7d1..b6e5d8cc1bb50ffe75a2 100644
> --- a/xf86drm.c
> +++ b/xf86drm.c
> @@ -2823,7 +2823,7 @@ static char *drmGetMinorNameForFD(int fd, int type)
> struct stat sbuf;
> const char *name = drmGetMinorName(type);
> int len;
> - char dev_name[64], buf[64];
> + char *dev_name, buf[64];
> int maj, min;
>
> if (!name)
> @@ -2848,20 +2848,22 @@ static char *drmGetMinorNameForFD(int fd, int type)
>
> while ((ent = readdir(sysdir))) {
> if (strncmp(ent->d_name, name, len) == 0) {
> - snprintf(dev_name, sizeof(dev_name), DRM_DIR_NAME "/%s",
> - ent->d_name);
> + if (asprintf(&dev_name, DRM_DIR_NAME "/%s",
Just noting in passing that asprintf is a GNU extension, is that okay?
BR,
Jani.
> + ent->d_name) < 0) {
> + dev_name = NULL;
> + }
>
> closedir(sysdir);
> - return strdup(dev_name);
> + return dev_name;
> }
> }
> return NULL;
> #else
> struct stat sbuf;
> - char buf[PATH_MAX + 1];
> + char *buf;
> const char *dev_name;
> unsigned int maj, min;
> - int n, base;
> + int base;
>
> if (fstat(fd, &sbuf))
> return NULL;
> @@ -2890,11 +2892,10 @@ static char *drmGetMinorNameForFD(int fd, int type)
> if (base < 0)
> return NULL;
>
> - n = snprintf(buf, sizeof(buf), dev_name, DRM_DIR_NAME, min - base);
> - if (n == -1 || n >= sizeof(buf))
> + if (asprintf(&buf, dev_name, DRM_DIR_NAME, min - base) < 0)
> return NULL;
>
> - return strdup(buf);
> + return buf;
> #endif
> }
>
> @@ -4119,10 +4120,10 @@ char *drmGetDeviceNameFromFd2(int fd)
> return strdup(path);
> #else
> struct stat sbuf;
> - char node[PATH_MAX + 1];
> + char *node;
> const char *dev_name;
> int node_type;
> - int maj, min, n, base;
> + int maj, min, base;
>
> if (fstat(fd, &sbuf))
> return NULL;
> @@ -4155,11 +4156,10 @@ char *drmGetDeviceNameFromFd2(int fd)
> if (base < 0)
> return NULL;
>
> - n = snprintf(node, PATH_MAX, dev_name, DRM_DIR_NAME, min - base);
> - if (n == -1 || n >= PATH_MAX)
> + if (asprintf(&node, dev_name, DRM_DIR_NAME, min - base) < 0)
> return NULL;
>
> - return strdup(node);
> + return node;
> #endif
> }
--
Jani Nikula, Intel Open Source Technology Center
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
next prev parent reply other threads:[~2018-03-26 13:56 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-03-26 10:26 [PATCH libdrm 1/3] xf86drm: replace sprintf()+strdup() with asprintf() Eric Engestrom
2018-03-26 10:26 ` [PATCH libdrm 2/3] xf86drm: add buffer size safety to sprintf() Eric Engestrom
2018-03-26 14:02 ` Emil Velikov
2018-03-26 10:26 ` [PATCH libdrm 3/3] xf86drm: replace stat() with access() to verify file existence Eric Engestrom
2018-03-26 14:03 ` Emil Velikov
2018-03-26 13:57 ` Jani Nikula [this message]
2018-03-26 14:00 ` [PATCH libdrm 1/3] xf86drm: replace sprintf()+strdup() with asprintf() Emil Velikov
2018-04-03 16:00 ` Eric Engestrom
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87fu4ney7z.fsf@intel.com \
--to=jani.nikula@linux.intel.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=eric.engestrom@imgtec.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.