Ignore:
Timestamp:
May 24, 2009, 7:55:48 AM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Update Samba 3.3 branch to 3.3.4

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.3.x/source/registry/reg_api.c

    r223 r224  
    460460        WERROR err;
    461461
     462        /*
     463         * We must refuse to handle subkey-paths containing
     464         * a '/' character because at a lower level, after
     465         * normalization, '/' is treated as a key separator
     466         * just like '\\'.
     467         */
     468        if (strchr(subkeypath, '/') != NULL) {
     469                return WERR_INVALID_PARAM;
     470        }
     471
    462472        if (!(mem_ctx = talloc_new(ctx))) return WERR_NOMEM;
    463473
Note: See TracChangeset for help on using the changeset viewer.