diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-11-14 13:21:04 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-11-14 13:21:04 +0000 |
commit | 5fc009f6d9fcae69185b8f5d52a9e545d79a0935 (patch) | |
tree | 4346f2ed7205e454704c9955f6c380c06661add4 /cs/demo/Ice/throughput/Client.cs | |
parent | adding Glacier2.SessionManager.CloseCount (diff) | |
download | ice-5fc009f6d9fcae69185b8f5d52a9e545d79a0935.tar.bz2 ice-5fc009f6d9fcae69185b8f5d52a9e545d79a0935.tar.xz ice-5fc009f6d9fcae69185b8f5d52a9e545d79a0935.zip |
Fixed bug 591 - NullReferenceException
Diffstat (limited to 'cs/demo/Ice/throughput/Client.cs')
-rwxr-xr-x | cs/demo/Ice/throughput/Client.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cs/demo/Ice/throughput/Client.cs b/cs/demo/Ice/throughput/Client.cs index 8db4ca4f635..92321c302b5 100755 --- a/cs/demo/Ice/throughput/Client.cs +++ b/cs/demo/Ice/throughput/Client.cs @@ -66,6 +66,7 @@ public class Client : Ice.Application StringDouble[] structSeq = new StringDouble[StringDoubleSeqSize.value]; for(int i = 0; i < StringDoubleSeqSize.value; ++i) { + structSeq[i] = new StringDouble(); structSeq[i].s = "hello"; structSeq[i].d = 3.14; } |