Changeset 429 for trunk/server/source3/smbd/process.c
- Timestamp:
- Apr 9, 2010, 3:51:41 PM (15 years ago)
- Location:
- trunk/server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server
-
Property svn:mergeinfo
set to
/vendor/3.5.2 merged eligible /vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
trunk/server/source3/smbd/process.c
r414 r429 1813 1813 1814 1814 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; 1815 1824 goto error; 1816 1825 } … … 1840 1849 req, req->outbuf, uint8_t, smb_len(req->outbuf) + 4); 1841 1850 if (req->chain_outbuf == NULL) { 1842 goto error;1851 smb_panic("talloc failed"); 1843 1852 } 1844 1853 req->outbuf = NULL;
Note:
See TracChangeset
for help on using the changeset viewer.