myserver-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[myserver-commit] [SCM] GNU MyServer branch, master, updated. fbc5966d52


From: Giuseppe Scrivano
Subject: [myserver-commit] [SCM] GNU MyServer branch, master, updated. fbc5966d528e40ddf3fc25ee7450363fa8168848
Date: Sat, 08 Aug 2009 11:32:17 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU MyServer".

The branch, master has been updated
       via  fbc5966d528e40ddf3fc25ee7450363fa8168848 (commit)
      from  46f541486dec795c35892089564e39e7b897853e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------


commit fbc5966d528e40ddf3fc25ee7450363fa8168848
Author: Giuseppe Scrivano <address@hidden>
Date:   Sat Aug 8 13:19:33 2009 +0200

    Fix an implicit cast to a signed type.

diff --git a/myserver/src/protocol/http/http_data_read.cpp 
b/myserver/src/protocol/http/http_data_read.cpp
index 3e15e68..afb3744 100644
--- a/myserver/src/protocol/http/http_data_read.cpp
+++ b/myserver/src/protocol/http/http_data_read.cpp
@@ -359,7 +359,7 @@ int HttpDataRead::readPostData(HttpThreadContext* td, int* 
httpRetCode)
         {
 
           /* Do not try to read more than what we expect.  */
-          u_long dimBuffer = std::min (td->secondaryBuffer->getRealLength() - 
1l,
+          u_long dimBuffer = std::min (td->secondaryBuffer->getRealLength() - 
1ul,
                                        length);
 
           if (readContiguousPrimitivePostData (td->request.uriOptsPtr,

-----------------------------------------------------------------------

Summary of changes:
 myserver/src/protocol/http/http_data_read.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU MyServer




reply via email to

[Prev in Thread] Current Thread [Next in Thread]