Changeset 51 in cheroxy for trunk/src/CRXHttpResponse.cpp


Ignore:
Timestamp:
11/27/12 13:50:22 (11 years ago)
Author:
cheese
Message:

#1 modify makefile to seperate build script to library and test module

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/CRXHttpResponse.cpp

    r47 r51  
    115115                             const int  aLength)
    116116{
    117     int     aResult = 0;
    118     int     aSize   = 0;
    119     char    * aChunkedPtr = NULL;
     117    int             aResult = 0;
     118    unsigned int    aSize   = 0;
     119    char            * aChunkedPtr = NULL;
    120120
    121121    /*----------------------------------------------------------------*/
     
    147147        mContentLength += aLength;
    148148        aSize = mContent.size ();
    149         if ((unsigned int)aSize > strlen (CRLF) + strlen (CRLF2))
     149        if (aSize > strlen (CRLF) + strlen (CRLF2))
    150150        {
    151151            aChunkedPtr = &mContent[0] + aSize - strlen (CRLF2);
Note: See TracChangeset for help on using the changeset viewer.