Changeset 781 for branches


Ignore:
Timestamp:
Aug 6, 2013, 6:42:32 PM (12 years ago)
Author:
Silvan Scherrer
Message:

Samba 3.5: fixed ticket #224

Location:
branches/samba-3.5.x/lib/tdb/common
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.5.x/lib/tdb/common/lock.c

    r776 r781  
    102102                TDB_LOG((tdb, TDB_DEBUG_FATAL, "_mutex_brlock unknown rw_type request %d\n", rw_type));
    103103                exit(1);
    104                         break;
     104                break;
    105105        }
    106106
  • branches/samba-3.5.x/lib/tdb/common/open.c

    r456 r781  
    615615int os2_crtsem(struct tdb_context *tdb, const char *name, const char *caller)
    616616{
     617        // name could be null, so handle it
     618        if (name == NULL) return -1;
     619
    617620        if (!(tdb->flags & TDB_INTERNAL))
    618621        {
Note: See TracChangeset for help on using the changeset viewer.