Ignore:
Timestamp:
Jun 16, 2009, 5:52:30 PM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Update 3.2 to 3.2.12

File:
1 edited

Legend:

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

    r133 r272  
    456456        WERROR err;
    457457
     458        /*
     459         * We must refuse to handle subkey-paths containing
     460         * a '/' character because at a lower level, after
     461         * normalization, '/' is treated as a key separator
     462         * just like '\\'.
     463         */
     464        if (strchr(subkeypath, '/') != NULL) {
     465                return WERR_INVALID_PARAM;
     466        }
     467
    458468        if (!(mem_ctx = talloc_new(ctx))) return WERR_NOMEM;
    459469
Note: See TracChangeset for help on using the changeset viewer.