Skip to content

Commit

Permalink
More noticeable warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
can1357 authored May 6, 2018
1 parent f06bc71 commit 7ea381b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions SimpleMapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ static std::vector<BYTE> Mp_CreateImportShell( BYTE* Image, PVOID MappedAdr, boo
uint32_t ImportNameOffset = DataContainer.size();

if ( !strcmpi( ImportName, "AddVectoredExceptionHandler" ) )
printf( "[+] WARNING: Vectored Exception Handling IS NOT SUPPORTING!\n" );
printf( "\n[+] WARNING: Vectored Exception Handling IS NOT SUPPORTING!\n\n" );

do
DataContainer.push_back( *ImportName );
Expand Down Expand Up @@ -196,9 +196,9 @@ static void Mp_RelocateImage( BYTE* Image, BYTE* Target )
memcpy( Target + VirtualAddress, Image + RawData, RawSize );

if ( !strcmpi( Name, ".pdata" ) )
printf( "[+] WARNING: Structured Exception Handling IS NOT SUPPORTED!\n" );
printf( "\n[+] WARNING: Structured Exception Handling IS NOT SUPPORTED!\n\n" );
if ( !strcmpi( Name, ".tls" ) )
printf( "[+] WARNING: Thread-local Storage IS NOT SUPPORTED!\n" );
printf( "\n[+] WARNING: Thread-local Storage IS NOT SUPPORTED!\n\n" );
}

// Reloc sections
Expand Down

0 comments on commit 7ea381b

Please sign in to comment.