Ignore:
Timestamp:
Apr 9, 2010, 3:51:41 PM (15 years ago)
Author:
Silvan Scherrer
Message:

Samba 3.5.x: trunk update to 3.5.2

Location:
trunk/server
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/server

  • trunk/server/source3/smbd/process.c

    r414 r429  
    18131813
    18141814        if ((req->wct < 2) || (CVAL(req->outbuf, smb_wct) < 2)) {
     1815                if (req->chain_outbuf == NULL) {
     1816                        req->chain_outbuf = TALLOC_REALLOC_ARRAY(
     1817                                req, req->outbuf, uint8_t,
     1818                                smb_len(req->outbuf) + 4);
     1819                        if (req->chain_outbuf == NULL) {
     1820                                smb_panic("talloc failed");
     1821                        }
     1822                }
     1823                req->outbuf = NULL;
    18151824                goto error;
    18161825        }
     
    18401849                        req, req->outbuf, uint8_t, smb_len(req->outbuf) + 4);
    18411850                if (req->chain_outbuf == NULL) {
    1842                         goto error;
     1851                        smb_panic("talloc failed");
    18431852                }
    18441853                req->outbuf = NULL;
Note: See TracChangeset for help on using the changeset viewer.