http://llvm.org/bugs/show_bug.cgi?id=16824

            Bug ID: 16824
           Summary: wprintf format specifiers should get the same safety
                    checks as printf specifiers
           Product: clang
           Version: unspecified
          Hardware: Macintosh
                OS: MacOS X
            Status: NEW
          Severity: normal
          Priority: P
         Component: -New Bugs
          Assignee: [email protected]
          Reporter: [email protected]
                CC: [email protected]
    Classification: Unclassified

This code will issue a warning for the printf call but not the wprintf call:


static void test()
{
    printf("%d %d %s\n", 4, 3.5, "ssss");
    wprintf(L"%d %d %s\n", 4, 3.5, "ssss");
}

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to