Skip to content

Commit bf10d39

Browse files
committed
Fix compile error on NDK r16
1 parent de1e49d commit bf10d39

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

android/jni/com_tencent_wcdb_repair_DBDumpUtil.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
#include <sqlite3.h>
2626
#include <stdio.h>
2727
#include <stdlib.h>
28+
#include <string.h>
2829

2930
#include "JNIHelp.h"
3031
#include "Logger.h"

android/jni/com_tencent_wcdb_repair_RepairKit.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
#include <repair/SQLiteRepairKit.h>
2626
#include <stdlib.h>
2727
#include <stdio.h>
28+
#include <string.h>
2829

2930
static int g_error_result = 0;
3031
static char g_error_msg[2048] = {0};

backup/mm_backup.c

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
#include <stddef.h>
2626
#include <stdio.h>
2727
#include <stdlib.h>
28+
#include <string.h>
2829
#include <sys/stat.h>
2930

3031
#include <openssl/rc4.h>

0 commit comments

Comments
 (0)