1
1

examples: Add null checks in libssh_scp.c

Signed-off-by: Anderson Toshiyuki Sasaki <ansasaki@redhat.com>
Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
Этот коммит содержится в:
Anderson Toshiyuki Sasaki 2018-09-25 16:44:06 +02:00 коммит произвёл Andreas Schneider
родитель 6118628424
Коммит 31202822a7

Просмотреть файл

@ -408,6 +408,11 @@ int main(int argc, char **argv) {
}
dest = parse_location(destination);
if (dest == NULL) {
r = EXIT_FAILURE;
goto end;
}
if (open_location(dest, WRITE) < 0) {
location_free(dest);
r = EXIT_FAILURE;
@ -416,6 +421,11 @@ int main(int argc, char **argv) {
for (i = 0; i < nsources; ++i) {
src = parse_location(sources[i]);
if (src == NULL) {
r = EXIT_FAILURE;
goto close_dest;
}
if (open_location(src, READ) < 0) {
location_free(src);
r = EXIT_FAILURE;