Следующие ошибки были зарегистрированы
на com.github.omadahealth.lollipin.DatabaseHelper.userFP1 (DatabaseHelper.java:400) на com.magtouch.app.gateopen $ 22.onUpCharSuccess (gateopen.java:777) в android_serialport_api.AsyncFingerprint.handleMessage (AsyncFingerprint.java:126)
Функция базы данных
public byte[] userFP1(int userID){
SQLiteDatabase db = this.getWritableDatabase();
Cursor cursor = db.query(TABLE_USERS, new String[]{FINGER_PRINT1}, USER_ID + "=?", new String[]{String.valueOf(userID)}, null, null, null, null);
if (cursor != null) {
cursor.moveToFirst();
}
return cursor.getBlob (10 );
}
, вызывающая кодбаза данных
if(db.userFP1 (i)!=null){
System.arraycopy( db.userFP1 ( i ), 0, tmp, 0, 256);
if(FPMatch.getInstance().MatchTemplate(model,tmp)>60){
tvFpStatus.setText(getString( R.string.txt_fpmatchok));
break;
}
Section pointed by the error from (AsyncFingerprint.java:126)
if (msg.obj != null) {
onUpCharListener.onUpCharSuccess((byte[]) msg.obj);
} else {
onUpCharListener.onUpCharFail();
}