Ignore:
Timestamp:
Nov 25, 2016, 8:04:54 PM (9 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: update vendor to version 4.4.7

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/source3/locking/share_mode_lock.c

    r988 r989  
    442442
    443443        /*
     444         * Release the dptr as well before reparenting to NULL
     445         * (in-memory cache) context.
     446         */
     447        TALLOC_FREE(data.dptr);
     448        /*
    444449         * Reparent d into the in-memory cache so it can be reused if the
    445450         * sequence number matches. See parse_share_modes()
     
    615620        struct share_mode_lock *lck = talloc_get_type_abort(
    616621                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        }
    617628
    618629        lck->data = parse_share_modes(lck, key, data);
Note: See TracChangeset for help on using the changeset viewer.