Changeset 205 for branches/samba-3.2.x/source
- Timestamp:
- May 21, 2009, 4:47:44 PM (16 years ago)
- Location:
- branches/samba-3.2.x/source
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.2.x/source/VERSION
r204 r205 26 26 SAMBA_VERSION_MAJOR=3 27 27 SAMBA_VERSION_MINOR=2 28 SAMBA_VERSION_RELEASE= 428 SAMBA_VERSION_RELEASE=5 29 29 30 30 ######################################################## -
branches/samba-3.2.x/source/include/version.h
r204 r205 2 2 #define SAMBA_VERSION_MAJOR 3 3 3 #define SAMBA_VERSION_MINOR 2 4 #define SAMBA_VERSION_RELEASE 45 #define SAMBA_VERSION_OFFICIAL_STRING "3.2. 4"4 #define SAMBA_VERSION_RELEASE 5 5 #define SAMBA_VERSION_OFFICIAL_STRING "3.2.5" 6 6 #define SAMBA_VERSION_STRING samba_version_string() -
branches/samba-3.2.x/source/smbd/ipc.c
r133 r205 765 765 } 766 766 767 if (d disp> av_size ||767 if (doff > av_size || 768 768 dcnt > av_size || 769 d disp+dcnt > av_size ||770 d disp+dcnt < ddisp) {769 doff+dcnt > av_size || 770 doff+dcnt < doff) { 771 771 goto bad_param; 772 772 } -
branches/samba-3.2.x/source/smbd/nttrans.c
r204 r205 2854 2854 } 2855 2855 2856 if (d disp> av_size ||2856 if (doff > av_size || 2857 2857 dcnt > av_size || 2858 d disp+dcnt > av_size ||2859 d disp+dcnt < ddisp) {2858 doff+dcnt > av_size || 2859 doff+dcnt < doff) { 2860 2860 goto bad_param; 2861 2861 } -
branches/samba-3.2.x/source/smbd/trans2.c
r204 r205 7803 7803 } 7804 7804 7805 if (d disp> av_size ||7805 if (doff > av_size || 7806 7806 dcnt > av_size || 7807 d disp+dcnt > av_size ||7808 d disp+dcnt < ddisp) {7807 doff+dcnt > av_size || 7808 doff+dcnt < doff) { 7809 7809 goto bad_param; 7810 7810 }
Note:
See TracChangeset
for help on using the changeset viewer.