Small fixes (#2314)
* Assign the null pointer * Initialize variable * Fix while-conditions
This commit is contained in:
parent
6b04b908bf
commit
c100d527fc
|
@ -1115,7 +1115,7 @@ static void lq2xS_32_def(uint32* dst0, uint32* dst1, const uint32* src0, const u
|
||||||
unsigned i;
|
unsigned i;
|
||||||
|
|
||||||
for (i = 0; i < count; ++i) {
|
for (i = 0; i < count; ++i) {
|
||||||
unsigned char mask;
|
unsigned char mask = 0;
|
||||||
|
|
||||||
uint32 c[9];
|
uint32 c[9];
|
||||||
|
|
||||||
|
|
|
@ -258,7 +258,7 @@ void CProjectSupport::LoadSupportInfo(void)
|
||||||
if (hKeyResults != nullptr)
|
if (hKeyResults != nullptr)
|
||||||
{
|
{
|
||||||
RegCloseKey(hKeyResults);
|
RegCloseKey(hKeyResults);
|
||||||
nullptr;
|
hKeyResults = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<uint8_t> OutData;
|
std::vector<uint8_t> OutData;
|
||||||
|
|
|
@ -1329,19 +1329,19 @@ bool InsertNoteFile( LPBYTE aMemPak, LPCTSTR pszFileName )
|
||||||
int len = lstrlenA( szLine );
|
int len = lstrlenA( szLine );
|
||||||
|
|
||||||
i = 16;
|
i = 16;
|
||||||
while(( szLine[i] != '}' ) && (i < len))
|
while((i < len) && ( szLine[i] != '}' ))
|
||||||
i++;
|
i++;
|
||||||
|
|
||||||
szLine[i] = '\0';
|
szLine[i] = '\0';
|
||||||
i += ReverseNotesA( &szLine[16], &pBlock[12] );
|
i += ReverseNotesA( &szLine[16], &pBlock[12] );
|
||||||
|
|
||||||
while(( szLine[i] != '{' ) && (i < len))
|
while((i < len) && ( szLine[i] != '{' ))
|
||||||
i++;
|
i++;
|
||||||
|
|
||||||
if(i < len)
|
if(i < len)
|
||||||
{
|
{
|
||||||
int start = i+1;
|
int start = i+1;
|
||||||
while(( szLine[i] != '}' ) && (i < len))
|
while((i < len) && ( szLine[i] != '}' ))
|
||||||
i++;
|
i++;
|
||||||
if(i < len)
|
if(i < len)
|
||||||
{
|
{
|
||||||
|
@ -1350,7 +1350,7 @@ bool InsertNoteFile( LPBYTE aMemPak, LPCTSTR pszFileName )
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
while(( szLine[i] != '}' ) && (i < len))
|
while((i < len) && ( szLine[i] != '}' ))
|
||||||
i++;
|
i++;
|
||||||
szLine[i] = '\0';
|
szLine[i] = '\0';
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue