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

Diff for /src/usr.bin/ssh/sshbuf.c between version 1.3 and 1.4

version 1.3, 2015/01/20 23:14:00 version 1.4, 2015/10/05 17:11:21
Line 175 
Line 175 
                 return;                  return;
         dont_free = buf->dont_free;          dont_free = buf->dont_free;
         if (!buf->readonly) {          if (!buf->readonly) {
                 bzero(buf->d, buf->alloc);                  explicit_bzero(buf->d, buf->alloc);
                 free(buf->d);                  free(buf->d);
         }          }
         bzero(buf, sizeof(*buf));          bzero(buf, sizeof(*buf));

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4