Bug 1410617 - Fix a tiny typo r?andi draft
authorSylvestre Ledru <sledru@mozilla.com>
Sat, 21 Oct 2017 14:07:49 +0200
changeset 684368 044f8458c6f6b784476e36625b78bdc06c73c120
parent 684367 1bd4822983fa6a20eea9e56b42e104f9a4a8128c
child 684874 1c349a30586705672f97ae3e6a7e329e0618038e
push id85595
push userbmo:sledru@mozilla.com
push dateSat, 21 Oct 2017 12:08:42 +0000
reviewersandi
bugs1410617
milestone58.0a1
Bug 1410617 - Fix a tiny typo r?andi MozReview-Commit-ID: CGgerr8S8aR
netwerk/base/nsIncrementalStreamLoader.cpp
--- a/netwerk/base/nsIncrementalStreamLoader.cpp
+++ b/netwerk/base/nsIncrementalStreamLoader.cpp
@@ -65,17 +65,17 @@ NS_IMETHODIMP
 nsIncrementalStreamLoader::OnStartRequest(nsIRequest* request, nsISupports *ctxt)
 {
   nsCOMPtr<nsIChannel> chan( do_QueryInterface(request) );
   if (chan) {
     int64_t contentLength = -1;
     chan->GetContentLength(&contentLength);
     if (contentLength >= 0) {
       // On 64bit platforms size of uint64_t coincides with the size of size_t,
-      // so we want to compare with the minimum from size_t and int64_t. */
+      // so we want to compare with the minimum from size_t and int64_t.
       if (static_cast<uint64_t>(contentLength) >
           std::min(std::numeric_limits<size_t>::max(),
                    static_cast<size_t>(std::numeric_limits<int64_t>::max()))) {
         // Too big to fit into size_t, so let's bail.
         return NS_ERROR_OUT_OF_MEMORY;
       }
 
       // preallocate buffer