Ignore:
Timestamp:
Nov 26, 2007, 9:24:27 AM (18 years ago)
Author:
Paul Smedley
Message:

Update source to 3.0.27a

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.0/source/smbd/lanman.c

    r102 r105  
    8383                              buf, sizeof(buf));
    8484        l = push_ascii(*dst,buf,*n, STR_TERMINATE);
     85        if (l == -1) {
     86                return 0;
     87        }
    8588        (*dst) += l;
    8689        (*n) -= l;
     
    9598        }
    9699        l = push_ascii(*dst,src,*n, STR_TERMINATE);
     100        if (l == -1) {
     101                return 0;
     102        }
    97103        (*dst) += l;
    98104        (*n) -= l;
Note: See TracChangeset for help on using the changeset viewer.