Skip to content
Snippets Groups Projects
Commit 269ff7f0 authored by Samuel H. Kenyon's avatar Samuel H. Kenyon
Browse files

Fix binary hash mode compile error.

parent b4b060af
No related branches found
No related tags found
No related merge requests found
...@@ -448,7 +448,7 @@ sqlite_v1_lookup_str(TSK_HDB_INFO * hdb_info, const char* hvalue, ...@@ -448,7 +448,7 @@ sqlite_v1_lookup_str(TSK_HDB_INFO * hdb_info, const char* hvalue,
#ifdef IDX_SQLITE_STORE_TEXT #ifdef IDX_SQLITE_STORE_TEXT
ret = lookup_text(hdb_info, hvalue, flags, action, ptr); ret = lookup_text(hdb_info, hvalue, flags, action, ptr);
#else #else
const size_t len = strlen(hash)/2; const size_t len = strlen(hvalue)/2;
uint8_t * hashBlob = (uint8_t *) tsk_malloc(len+1); uint8_t * hashBlob = (uint8_t *) tsk_malloc(len+1);
const char * pos = hvalue; const char * pos = hvalue;
size_t count = 0; size_t count = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment