Ignore:
Timestamp:
May 20, 2009, 6:46:53 PM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Update 3.2 branch to 3.2.4

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

Legend:

Unmodified
Added
Removed
  • branches/samba-3.2.x/source/lib/tdb/common/io.c

    r133 r204  
    208208#ifdef HAVE_MMAP
    209209        if (tdb->map_ptr) {
    210                 int ret = munmap(tdb->map_ptr, tdb->map_size);
     210                int ret;
     211
     212                ret = munmap(tdb->map_ptr, tdb->map_size);
    211213                if (ret != 0)
    212214                        return ret;
  • branches/samba-3.2.x/source/lib/tdb/common/transaction.c

    r133 r204  
    569569                return -1;
    570570        }
    571 #ifdef MS_SYNC
     571#ifdef HAVE_MMAP
    572572        if (tdb->map_ptr) {
    573573                tdb_off_t moffset = offset & ~(tdb->page_size-1);
Note: See TracChangeset for help on using the changeset viewer.