mirror of
git://sigrok.org/libserialport
synced 2023-08-10 21:13:24 +03:00
commit
6c4b27a8b8
@ -389,7 +389,7 @@ enum sp_return sp_list_ports(struct sp_port ***list_ptr)
|
|||||||
data_len = data_size / sizeof(TCHAR);
|
data_len = data_size / sizeof(TCHAR);
|
||||||
data[data_len] = '\0';
|
data[data_len] = '\0';
|
||||||
#ifdef UNICODE
|
#ifdef UNICODE
|
||||||
name_len = WideCharToMultiByte(CP_ACP, 0, data, -1, NULL, 0, NULL, NULL)
|
name_len = WideCharToMultiByte(CP_ACP, 0, data, -1, NULL, 0, NULL, NULL);
|
||||||
#else
|
#else
|
||||||
name_len = data_len + 1;
|
name_len = data_len + 1;
|
||||||
#endif
|
#endif
|
||||||
@ -626,7 +626,7 @@ enum sp_return sp_open(struct sp_port *port, enum sp_mode flags)
|
|||||||
COMSTAT status;
|
COMSTAT status;
|
||||||
|
|
||||||
/* Prefix port name with '\\.\' to work with ports above COM9. */
|
/* Prefix port name with '\\.\' to work with ports above COM9. */
|
||||||
if (!(escaped_port_name = malloc(strlen(port->name + 5))))
|
if (!(escaped_port_name = malloc(strlen(port->name) + 5)))
|
||||||
RETURN_ERROR(SP_ERR_MEM, "Escaped port name malloc failed");
|
RETURN_ERROR(SP_ERR_MEM, "Escaped port name malloc failed");
|
||||||
sprintf(escaped_port_name, "\\\\.\\%s", port->name);
|
sprintf(escaped_port_name, "\\\\.\\%s", port->name);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user