-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Address issues picked up by Dev15 code analysis #5272
Changes from all commits
18f95b7
95e0f4f
ea3af76
1f57ed5
321ef76
6fd29fb
fa92015
3e1a41a
4749841
c15e537
c2b6a3c
6b6c50d
4457eec
0cd5f64
6581486
7ad8cc5
3878d55
8454ed6
e756000
ba0fadf
024bf5c
b46397c
34b7013
83edb62
6285aee
62e989e
80438b7
b3695e0
e450902
a157300
d3222bd
02a471a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,9 +3,14 @@ | |
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. | ||
//------------------------------------------------------------------------------------------------------- | ||
#include "stdafx.h" | ||
#pragma warning(disable:26434) // Function definition hides non-virtual function in base class | ||
#pragma warning(disable:26439) // Implicit noexcept | ||
#pragma warning(disable:26451) // Arithmetic overflow | ||
#pragma warning(disable:26495) // Uninitialized member variable | ||
#include "catch.hpp" | ||
#include <array> | ||
#include <process.h> | ||
#include <suppress.h> | ||
|
||
#pragma warning(disable:4100) // unreferenced formal parameter | ||
#pragma warning(disable:6387) // suppressing preFAST which raises warning for passing null to the JsRT APIs | ||
|
@@ -1243,7 +1248,8 @@ namespace JsRTApiTest | |
size_t length; | ||
REQUIRE(JsStringToPointer(nameValue, &name, &length) == JsNoError); | ||
|
||
CHECK(length == 1); | ||
REQUIRE(length == 1); | ||
#pragma prefast(suppress:__WARNING_MAYBE_UNINIT_VAR, "The require on the previous line should ensure that name[0] is initialized") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Did not all warnings have these fancy named macros? (There are some you're still suppressing or disabling by number) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nope, not all of them do. There are a couple cases where I missed using the named macro, though, that I should be fixing up in the next set of commits. |
||
CHECK(name[0] == ('a' + index)); | ||
} | ||
} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -306,7 +306,7 @@ bool Debugger::SetBaseline() | |
#ifdef _WIN32 | ||
LPSTR script = nullptr; | ||
FILE *file = nullptr; | ||
int numChars = 0; | ||
size_t numChars = 0; | ||
HRESULT hr = S_OK; | ||
|
||
if (_wfopen_s(&file, HostConfigFlags::flags.dbgbaseline, _u("rb")) != 0) | ||
|
@@ -316,13 +316,13 @@ bool Debugger::SetBaseline() | |
|
||
if(file != nullptr) | ||
{ | ||
int fileSize = _filelength(_fileno(file)); | ||
if (fileSize <= MAX_BASELINE_SIZE) | ||
long fileSize = _filelength(_fileno(file)); | ||
if (0 <= fileSize && fileSize <= MAX_BASELINE_SIZE) | ||
{ | ||
script = new char[fileSize + 1]; | ||
script = new char[(size_t)fileSize + 1]; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this required? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Array size declarations are size_t, and the analysis gets unhappy if we have a different type used in the addition here before the implicit conversion. This is notable for types shorter than size_t, as the overflow would occur before the conversion to size_t. I believe that on all currently-supported platforms this is indeed not required. |
||
|
||
numChars = static_cast<int>(fread(script, sizeof(script[0]), fileSize, file)); | ||
if (numChars == fileSize) | ||
numChars = fread(script, sizeof(script[0]), fileSize, file); | ||
if (numChars == (size_t)fileSize) | ||
{ | ||
script[numChars] = '\0'; | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,7 @@ | |
#endif // FreeBSD or unix ? | ||
#endif // _WIN32 ? | ||
|
||
#pragma prefast(disable:26444, "This warning unfortunately raises false positives when auto is used for declaring the type of an iterator in a loop.") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
suppress by name macro instead of number? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No macro for this one, unfortunately. |
||
#ifdef HAS_ICU | ||
#define INTL_LIBRARY_TEXT "icu" | ||
#elif defined(_WIN32) | ||
|
@@ -133,7 +134,7 @@ JsValueRef __stdcall WScriptJsrt::EchoCallback(JsValueRef callee, bool isConstru | |
} | ||
charcount_t len; | ||
LPWSTR ws = str.GetWideString(&len); | ||
LPWSTR wsNoNull = new WCHAR[len + 1]; | ||
LPWSTR wsNoNull = new WCHAR[((size_t)len) + 1]; | ||
charcount_t newIndex = 0; | ||
for (charcount_t j = 0; j < len; j++) | ||
{ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you mean to add this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, it was that or a longer statement to disable the warning for just that line. This took fewer keypresses, and won't complicate any future efforts to go over all the warnings we've disabled.