Changeset 989 for vendor/current/source3/locking
- Timestamp:
- Nov 25, 2016, 8:04:54 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/locking/share_mode_lock.c
r988 r989 442 442 443 443 /* 444 * Release the dptr as well before reparenting to NULL 445 * (in-memory cache) context. 446 */ 447 TALLOC_FREE(data.dptr); 448 /* 444 449 * Reparent d into the in-memory cache so it can be reused if the 445 450 * sequence number matches. See parse_share_modes() … … 615 620 struct share_mode_lock *lck = talloc_get_type_abort( 616 621 private_data, struct share_mode_lock); 622 623 if (data.dsize == 0) { 624 /* Likely a ctdb tombstone record, ignore it */ 625 lck->data = NULL; 626 return; 627 } 617 628 618 629 lck->data = parse_share_modes(lck, key, data);
Note:
See TracChangeset
for help on using the changeset viewer.