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

Diff for /src/usr.bin/ssh/readconf.c between version 1.172 and 1.173

version 1.172, 2008/11/04 19:18:00 version 1.173, 2008/12/09 02:58:16
Line 1288 
Line 1288 
         return (i);          return (i);
   
  fail_free:   fail_free:
         if (fwd->connect_host != NULL)          if (fwd->connect_host != NULL) {
                 xfree(fwd->connect_host);                  xfree(fwd->connect_host);
         if (fwd->listen_host != NULL)                  fwd->connect_host = NULL;
           }
           if (fwd->listen_host != NULL) {
                 xfree(fwd->listen_host);                  xfree(fwd->listen_host);
                   fwd->listen_host = NULL;
           }
         return (0);          return (0);
 }  }

Legend:
Removed from v.1.172  
changed lines
  Added in v.1.173