From 9d5ef800b6d3da54a5c733cff70306ac052ddd23 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Tue, 22 Mar 2005 23:18:41 +0000 Subject: [PATCH] r5979: Don't crash when talking to a Win98 server (bugid #2530 - not a fix buy just prevent the crash). Jeremy. --- source/client/client.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/client/client.c b/source/client/client.c index d03c3231272..dbddf764158 100644 --- a/source/client/client.c +++ b/source/client/client.c @@ -219,6 +219,7 @@ static int do_dskattr(void) if ( !cli_resolve_path( "", cli, cur_dir, &targetcli, targetpath ) ) { d_printf("Error in dskattr: %s\n", cli_errstr(cli)); + return 1; } if (!cli_dskattr(targetcli, &bsize, &total, &avail)) { -- 2.11.4.GIT