@@ -694,25 +694,27 @@ static CURLcode ssh_force_knownhost_key_type(struct connectdata *conn)
694
694
while (!libssh2_knownhost_get (sshc -> kh , & store , store )) {
695
695
/* For non-standard ports, the name will be enclosed in */
696
696
/* square brackets, followed by a colon and the port */
697
- if (store -> name [0 ] == '[' ) {
698
- kh_name_end = strstr (store -> name , "]:" );
699
- if (!kh_name_end ) {
700
- infof (data , "Invalid host pattern %s in %s\n" ,
701
- store -> name , data -> set .str [STRING_SSH_KNOWNHOSTS ]);
702
- continue ;
703
- }
704
- port = atoi (kh_name_end + 2 );
705
- if (kh_name_end && (port == conn -> remote_port )) {
706
- kh_name_size = strlen (store -> name ) - 1 - strlen (kh_name_end );
707
- if (strncmp (store -> name + 1 , conn -> host .name , kh_name_size ) == 0 ) {
708
- found = true;
709
- break ;
697
+ if (store -> name ){
698
+ if (store -> name [0 ] == '[' ) {
699
+ kh_name_end = strstr (store -> name , "]:" );
700
+ if (!kh_name_end ) {
701
+ infof (data , "Invalid host pattern %s in %s\n" ,
702
+ store -> name , data -> set .str [STRING_SSH_KNOWNHOSTS ]);
703
+ continue ;
704
+ }
705
+ port = atoi (kh_name_end + 2 );
706
+ if (kh_name_end && (port == conn -> remote_port )) {
707
+ kh_name_size = strlen (store -> name ) - 1 - strlen (kh_name_end );
708
+ if (strncmp (store -> name + 1 , conn -> host .name , kh_name_size ) == 0 ) {
709
+ found = true;
710
+ break ;
711
+ }
710
712
}
711
713
}
712
- }
713
- else if ( strcmp ( store -> name , conn -> host . name ) == 0 ) {
714
- found = true ;
715
- break ;
714
+ else if ( strcmp ( store -> name , conn -> host . name ) == 0 ) {
715
+ found = true;
716
+ break ;
717
+ }
716
718
}
717
719
}
718
720
0 commit comments