Skip to content

Commit 5866e3a

Browse files
authored
Fixed null reference exception (#25559)
1 parent fbcaeeb commit 5866e3a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

sdk/batch/Microsoft.Azure.Batch/src/OutputFileBlobContainerDestination.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,9 @@ public OutputFileBlobContainerDestination(
1818
string containerUrl,
1919
ComputeNodeIdentityReference identityReference,
2020
string path = default(string))
21+
: this(containerUrl, path)
2122
{
22-
this.ContainerUrl = containerUrl;
23-
this.IdentityReference = identityReference;
24-
this.Path = path;
23+
IdentityReference = identityReference;
2524
}
2625
}
2726
}

0 commit comments

Comments
 (0)