X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=linux.c;h=7913394d8f4ba18a5d7144cb3527971732502df5;hb=81243567bced0a1e6510811235c018fda0890285;hp=f9b2ec69c888ed96ded15ad177126116ff97af20;hpb=46d8b0a039965cf68fb27a3b88b3c23a1e34d912;p=libserialport.git diff --git a/linux.c b/linux.c index f9b2ec6..7913394 100644 --- a/linux.c +++ b/linux.c @@ -1,6 +1,7 @@ /* * This file is part of the libserialport project. * + * Copyright (C) 2013 Martin Ling * Copyright (C) 2014 Aurelien Jacobs * * This program is free software: you can redistribute it and/or modify @@ -17,6 +18,7 @@ * along with this program. If not, see . */ +#include #include "libserialport.h" #include "libserialport_internal.h" @@ -176,12 +178,12 @@ SP_PRIV enum sp_return get_port_details(struct sp_port *port) SP_PRIV enum sp_return list_ports(struct sp_port ***list) { char name[PATH_MAX], target[PATH_MAX]; - struct dirent entry, *result; -#ifdef HAVE_SERIAL_STRUCT + struct dirent *entry; +#ifdef HAVE_STRUCT_SERIAL_STRUCT struct serial_struct serial_info; int ioctl_result; #endif - char buf[sizeof(entry.d_name) + 23]; + char buf[sizeof(entry->d_name) + 23]; int len, fd; DIR *dir; int ret = SP_OK; @@ -192,19 +194,19 @@ SP_PRIV enum sp_return list_ports(struct sp_port ***list) RETURN_FAIL("Could not open /sys/class/tty"); DEBUG("Iterating over results"); - while (!readdir_r(dir, &entry, &result) && result) { - snprintf(buf, sizeof(buf), "/sys/class/tty/%s", entry.d_name); + while ((entry = readdir(dir))) { + snprintf(buf, sizeof(buf), "/sys/class/tty/%s", entry->d_name); if (lstat(buf, &statbuf) == -1) continue; if (!S_ISLNK(statbuf.st_mode)) - snprintf(buf, sizeof(buf), "/sys/class/tty/%s/device", entry.d_name); + snprintf(buf, sizeof(buf), "/sys/class/tty/%s/device", entry->d_name); len = readlink(buf, target, sizeof(target)); if (len <= 0 || len >= (int)(sizeof(target) - 1)) continue; target[len] = 0; if (strstr(target, "virtual")) continue; - snprintf(name, sizeof(name), "/dev/%s", entry.d_name); + snprintf(name, sizeof(name), "/dev/%s", entry->d_name); DEBUG_FMT("Found device %s", name); if (strstr(target, "serial8250")) { /* @@ -217,11 +219,11 @@ SP_PRIV enum sp_return list_ports(struct sp_port ***list) DEBUG("Open failed, skipping"); continue; } -#ifdef HAVE_SERIAL_STRUCT +#ifdef HAVE_STRUCT_SERIAL_STRUCT ioctl_result = ioctl(fd, TIOCGSERIAL, &serial_info); #endif close(fd); -#ifdef HAVE_SERIAL_STRUCT +#ifdef HAVE_STRUCT_SERIAL_STRUCT if (ioctl_result != 0) { DEBUG("ioctl failed, skipping"); continue; @@ -234,7 +236,7 @@ SP_PRIV enum sp_return list_ports(struct sp_port ***list) } DEBUG_FMT("Found port %s", name); *list = list_append(*list, name); - if (!list) { + if (!*list) { SET_ERROR(ret, SP_ERR_MEM, "List append failed"); break; }