Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 33241
b: refs/heads/master
c: 229395c
h: refs/heads/master
i:
  33239: fda0c69
v: v3
  • Loading branch information
Linas Vepstas authored and Linus Torvalds committed Aug 6, 2006
1 parent 01ba11d commit 4710631
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 825e037fb8912f38e9d9ddd3ec79fa7c584db708
refs/heads/master: 229395c90aadbadef76bacf52b9cb3326f509e93
3 changes: 2 additions & 1 deletion trunk/drivers/char/hvsi.c
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,8 @@ static void hvsi_recv_control(struct hvsi_struct *hp, uint8_t *packet,
/* CD went away; no more connection */
pr_debug("hvsi%i: CD dropped\n", hp->index);
hp->mctrl &= TIOCM_CD;
if (!(hp->tty->flags & CLOCAL))
/* If userland hasn't done an open(2) yet, hp->tty is NULL. */
if (hp->tty && !(hp->tty->flags & CLOCAL))
*to_hangup = hp->tty;
}
break;
Expand Down

0 comments on commit 4710631

Please sign in to comment.