Ignore:
Timestamp:
May 21, 2009, 4:47:44 PM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Update 3.2 branch to 3.2.5

Location:
branches/samba-3.2.x/source
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.2.x/source/VERSION

    r204 r205  
    2626SAMBA_VERSION_MAJOR=3
    2727SAMBA_VERSION_MINOR=2
    28 SAMBA_VERSION_RELEASE=4
     28SAMBA_VERSION_RELEASE=5
    2929
    3030########################################################
  • branches/samba-3.2.x/source/include/version.h

    r204 r205  
    22#define SAMBA_VERSION_MAJOR 3
    33#define SAMBA_VERSION_MINOR 2
    4 #define SAMBA_VERSION_RELEASE 4
    5 #define SAMBA_VERSION_OFFICIAL_STRING "3.2.4"
     4#define SAMBA_VERSION_RELEASE 5
     5#define SAMBA_VERSION_OFFICIAL_STRING "3.2.5"
    66#define SAMBA_VERSION_STRING samba_version_string()
  • branches/samba-3.2.x/source/smbd/ipc.c

    r133 r205  
    765765                }
    766766
    767                 if (ddisp > av_size ||
     767                if (doff > av_size ||
    768768                                dcnt > av_size ||
    769                                 ddisp+dcnt > av_size ||
    770                                 ddisp+dcnt < ddisp) {
     769                                doff+dcnt > av_size ||
     770                                doff+dcnt < doff) {
    771771                        goto bad_param;
    772772                }
  • branches/samba-3.2.x/source/smbd/nttrans.c

    r204 r205  
    28542854                }
    28552855
    2856                 if (ddisp > av_size ||
     2856                if (doff > av_size ||
    28572857                                dcnt > av_size ||
    2858                                 ddisp+dcnt > av_size ||
    2859                                 ddisp+dcnt < ddisp) {
     2858                                doff+dcnt > av_size ||
     2859                                doff+dcnt < doff) {
    28602860                        goto bad_param;
    28612861                }
  • branches/samba-3.2.x/source/smbd/trans2.c

    r204 r205  
    78037803                }
    78047804
    7805                 if (ddisp > av_size ||
     7805                if (doff > av_size ||
    78067806                                dcnt > av_size ||
    7807                                 ddisp+dcnt > av_size ||
    7808                                 ddisp+dcnt < ddisp) {
     7807                                doff+dcnt > av_size ||
     7808                                doff+dcnt < doff) {
    78097809                        goto bad_param;
    78107810                }
Note: See TracChangeset for help on using the changeset viewer.