[BACK]Return to channels.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/channels.c between version 1.319 and 1.319.2.1

version 1.319, 2012/12/02 20:46:11 version 1.319.2.1, 2013/11/08 05:52:21
Line 698 
Line 698 
         if ((c = channel_lookup(id)) == NULL)          if ((c = channel_lookup(id)) == NULL)
                 fatal("channel_register_expect: %d: bad id", id);                  fatal("channel_register_expect: %d: bad id", id);
   
         cc = xmalloc(sizeof(*cc));          cc = xcalloc(1, sizeof(*cc));
         cc->cb = cb;          cc->cb = cb;
         cc->abandon_cb = abandon_cb;          cc->abandon_cb = abandon_cb;
         cc->ctx = ctx;          cc->ctx = ctx;

Legend:
Removed from v.1.319  
changed lines
  Added in v.1.319.2.1