Changeset 105 for branches/samba-3.0/source/nmbd/nmbd_processlogon.c
- Timestamp:
- Nov 26, 2007, 9:24:27 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.0/source/nmbd/nmbd_processlogon.c
r102 r105 451 451 sizeof(outbuf) - PTR_DIFF(q+1, outbuf), 452 452 0); 453 if (size == (uint8)-1) { 454 return; 455 } 453 456 SCVAL(q, 0, size); 454 457 q += (size + 1); … … 471 474 sizeof(outbuf) - PTR_DIFF(q+1, outbuf), 472 475 0); 476 if (size == (uint8)-1) { 477 return; 478 } 473 479 SCVAL(q, 0, size); 474 480 q += (size + 1); … … 486 492 sizeof(outbuf) - PTR_DIFF(q+1, outbuf), 487 493 STR_UPPER); 494 if (size == (uint8)-1) { 495 return; 496 } 488 497 SCVAL(q, 0, size); 489 498 q += (size + 1); … … 500 509 sizeof(outbuf) - PTR_DIFF(q+1, outbuf), 501 510 0); 511 if (size == (uint8)-1) { 512 return; 513 } 502 514 SCVAL(q, 0, size); 503 515 q += (size + 1); … … 515 527 sizeof(outbuf) - PTR_DIFF(q+1, outbuf), 516 528 0); 529 if (size == (uint8)-1) { 530 return; 531 } 517 532 SCVAL(q, 0, size); 518 533 q += (size + 1); … … 527 542 sizeof(outbuf) - PTR_DIFF(q+1, outbuf), 528 543 0); 544 if (size == (uint8)-1) { 545 return; 546 } 529 547 SCVAL(q, 0, size); 530 548 q += (size + 1);
Note:
See TracChangeset
for help on using the changeset viewer.