Ignore:
Timestamp:
Aug 20, 2008, 9:10:33 AM (17 years ago)
Author:
Paul Smedley
Message:

Update trunk to v3.2.2

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/samba/source/lib/util_unistr.c

    r133 r149  
    3434static bool lowcase_table_use_unmap;
    3535static bool valid_table_use_unmap;
     36static bool initialized;
    3637
    3738/**
     
    6061                        SAFE_FREE(valid_table);
    6162        }
     63        initialized = false;
    6264}
    6365
     
    7173void load_case_tables(void)
    7274{
    73         static int initialised;
    7475        char *old_locale = NULL, *saved_locale = NULL;
    7576        int i;
    7677        TALLOC_CTX *frame = NULL;
    7778
    78         if (initialised) {
     79        if (initialized) {
    7980                return;
    8081        }
    81         initialised = 1;
     82        initialized = true;
    8283
    8384        frame = talloc_stackframe();
Note: See TracChangeset for help on using the changeset viewer.