summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-03-06 22:54:02 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2009-03-08 01:38:09 -0800
commitfbb0a5d8caf88e581b5226bbad0a21fd5509a58e (patch)
tree10917ee09eaa9c62ece68c2d3a3d43cdd405155d /src
parent798f62aa66bc5502cb558177b03866b6162e81f9 (diff)
downloadDotNetOpenAuth-fbb0a5d8caf88e581b5226bbad0a21fd5509a58e.zip
DotNetOpenAuth-fbb0a5d8caf88e581b5226bbad0a21fd5509a58e.tar.gz
DotNetOpenAuth-fbb0a5d8caf88e581b5226bbad0a21fd5509a58e.tar.bz2
Fixed bug where HttpRequestInfo.Headers were not being initialized by a constructor.
Diffstat (limited to 'src')
-rw-r--r--src/DotNetOpenAuth/Messaging/HttpRequestInfo.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth/Messaging/HttpRequestInfo.cs b/src/DotNetOpenAuth/Messaging/HttpRequestInfo.cs
index 13d4c46..7f7774f 100644
--- a/src/DotNetOpenAuth/Messaging/HttpRequestInfo.cs
+++ b/src/DotNetOpenAuth/Messaging/HttpRequestInfo.cs
@@ -109,6 +109,7 @@ namespace DotNetOpenAuth.Messaging {
/// </summary>
internal HttpRequestInfo() {
this.HttpMethod = "GET";
+ this.Headers = new WebHeaderCollection();
}
/// <summary>