diff options
author | Jeremy Allison <jra@samba.org> | 2009-02-27 20:57:49 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2009-02-27 20:57:49 -0800 |
commit | 9569d979de43970399f33645323e9091338084f6 (patch) | |
tree | bc691f70f9f51167bc56d80e69b6c489179a7441 /source4/torture | |
parent | a54520fd4d357eadccb5e101a5b74b50e6d7ab25 (diff) | |
download | samba-9569d979de43970399f33645323e9091338084f6.tar.gz samba-9569d979de43970399f33645323e9091338084f6.tar.bz2 samba-9569d979de43970399f33645323e9091338084f6.zip |
And the prize for the most pain caused in the build farm for a simple
typo goes to.....
Tim Prouty !!!!
Sorry Tim, nice test but you made a typo in passing in
the size of an array so we were reading uninitialized
memory :-).
That took far longer than it should have to track down...
(%$&#ing build system....).
The build farm should now slowly go back to normal.
Jeremy.
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/raw/streams.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/torture/raw/streams.c b/source4/torture/raw/streams.c index bf87bd224f..d0d21ccc06 100644 --- a/source4/torture/raw/streams.c +++ b/source4/torture/raw/streams.c @@ -1454,7 +1454,7 @@ static bool test_stream_create_disposition(struct torture_context *tctx, status = smb_raw_open(cli->tree, mem_ctx, &io); CHECK_STATUS(status, NT_STATUS_OK); smbcli_close(cli->tree, io.ntcreatex.out.file.fnum); - if (!check_stream_list(cli, fname, 2, &default_stream_name)) { + if (!check_stream_list(cli, fname, 1, &default_stream_name)) { goto done; } |