Merge "Fix memory access violation in NetworkStack" into sc-dev am: 1dc094b2c0

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/modules/Connectivity/+/14713334

Change-Id: Ie1eca928523704673fb42870df01644b215252de
This commit is contained in:
TreeHugger Robot
2021-06-03 06:14:12 +00:00
committed by Automerger Merge Worker

View File

@@ -183,7 +183,7 @@ static jboolean com_android_networkstack_tethering_BpfUtils_isEthernet(JNIEnv* e
return false;
default:
jniThrowExceptionFmt(env, "java/io/IOException",
"Unknown hardware address type %s on interface %s", rv,
"Unknown hardware address type %d on interface %s", rv,
interface.c_str());
return false;
}