VirtualBox

Changeset 1041 in kBuild for trunk/src


Ignore:
Timestamp:
Jun 8, 2007 6:36:57 PM (18 years ago)
Author:
bird
Message:

memset not memcmp.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kObjCache/kObjCache.c

    r1040 r1041  
    646646static void kOCSumInitWithCtx(PKOCSUM pSum, PKOCSUMCTX pCtx)
    647647{
    648     memcmp(pSum, 0, sizeof(*pSum));
     648    memset(pSum, 0, sizeof(*pSum));
    649649    MD5Init(&pCtx->MD5Ctx);
    650650}
     
    694694static void kOCSumInit(PKOCSUM pSumHead)
    695695{
    696     memcmp(pSumHead, 0, sizeof(*pSumHead));
     696    memset(pSumHead, 0, sizeof(*pSumHead));
    697697}
    698698
     
    760760        free(pv);
    761761    }
    762     memcmp(pSumHead, 0, sizeof(*pSumHead));
     762    memset(pSumHead, 0, sizeof(*pSumHead));
    763763}
    764764
     
    34243424{
    34253425    printf("syntax: kObjCache [--kObjCache-options] [-v|--verbose]\n"
    3426            "            [-d|--cache-dir <cache-dir>] [-n|--name <name-in-cache>]\n"
    3427            "            [-f|--file <local-cache-file>] [-t|--target <target-name>\n"
     3426           "            <  [-c|--cache-file <cache-file>]\n"
     3427           "             | [-n|--name <name-in-cache>] [[-d|--cache-dir <cache-dir>]] >\n"
     3428           "            <-f|--file <local-cache-file>>\n"
     3429           "            <-t|--target <target-name>>\n"
    34283430           "            [-r|--redir-stdout] [-p|--passthru]\n"
    34293431           "            --kObjCache-cpp <filename> <precompiler + args>\n"
     
    34323434           "            [--kObjCache-cpp|--kObjCache-cc [more args]]\n"
    34333435           "        kObjCache <-V|--version>\n"
    3434            "        kObjCache [-?|-h|--help]\n"
     3436           "        kObjCache [-?|/?|-h|/h|--help|/help]\n"
    34353437           "\n"
    34363438           "The env.var. KOBJCACHE_DIR sets the default cache diretory (-d).\n"
     
    34823484     * Parse the arguments.
    34833485     */
     3486    if (argc <= 1)
     3487        return usage();
    34843488    for (i = 1; i < argc; i++)
    34853489    {
     
    35653569        else if (!strcmp(argv[i], "-q") || !strcmp(argv[i], "--quiet"))
    35663570            g_cVerbosityLevel = 0;
    3567         else if (!strcmp(argv[i], "-h") || !strcmp(argv[i], "-?"))
     3571        else if (!strcmp(argv[i], "-h") || !strcmp(argv[i], "-?")
     3572              || !strcmp(argv[i], "/h") || !strcmp(argv[i], "/?") || !strcmp(argv[i], "/help"))
    35683573            return usage();
    35693574        else if (!strcmp(argv[i], "-V") || !strcmp(argv[i], "--version"))
     
    35773582    if (!pszEntryFile)
    35783583        return SyntaxError("No cache entry filename (-f)!\n");
     3584    if (!pszTarget)
     3585        return SyntaxError("No target name (-t)!\n");
    35793586    if (!cArgvCompile)
    35803587        return SyntaxError("No compiler arguments (--kObjCache-cc)!\n");
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette