forked from Imagelibrary/binutils-gdb
Fix latent bug in ser_windows_send_break
The ClearCommBreak documentation says:
If the function fails, the return value is zero.
ser_windows_send_break inverts this check. This has never been
noticed because the caller doesn't check the result.
Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=30770
This commit is contained in:
@@ -137,7 +137,7 @@ ser_windows_send_break (struct serial *scb)
|
||||
/* Delay for 250 milliseconds. */
|
||||
Sleep (250);
|
||||
|
||||
if (ClearCommBreak (h))
|
||||
if (ClearCommBreak (h) == 0)
|
||||
return -1;
|
||||
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user