Skip to content

Commit 3afa20a

Browse files
committed
fix double \n in printf
1 parent fe9972c commit 3afa20a

File tree

1 file changed

+1
-1
lines changed
  • external/source/exploits/CVE-2013-6282

1 file changed

+1
-1
lines changed

external/source/exploits/CVE-2013-6282/exploit.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ unsigned char shellcode_buf[2048] = { 0x90, 0x90, 0x90, 0x90 };
2121

2222
#ifdef DEBUG
2323
#include <android/log.h>
24-
#define LOGV(...) __android_log_print(ANDROID_LOG_INFO, "exploit", __VA_ARGS__); printf(__VA_ARGS__); printf("\n"); fflush(stdout)
24+
#define LOGV(...) __android_log_print(ANDROID_LOG_INFO, "exploit", __VA_ARGS__); printf(__VA_ARGS__); fflush(stdout)
2525
#else
2626
#define LOGV(...)
2727
#endif

0 commit comments

Comments
 (0)