ssb: Size blob ID buffers appropriately.

This commit is contained in:
2024-11-11 21:05:29 -05:00
parent db4997fdc4
commit 7a276adbbc
2 changed files with 10 additions and 8 deletions

View File

@ -90,7 +90,7 @@ void tf_ssb_export(tf_ssb_t* ssb, const char* key)
return;
}
char app_blob_id[64] = { 0 };
char app_blob_id[k_blob_id_len] = { 0 };
sqlite3* db = tf_ssb_acquire_db_reader(ssb);
sqlite3_busy_timeout(db, 10000);
sqlite3_stmt* statement;