Skip to content
Snippets Groups Projects
Commit abb10abc authored by Constantin P.'s avatar Constantin P. 💬 Committed by Roman Khlopkov
Browse files

seeking fixed

parent 1053d794
No related branches found
No related tags found
1 merge request!1691seeking fixed
...@@ -431,7 +431,7 @@ int dap_chain_cell_load(dap_chain_t *a_chain, dap_chain_cell_t *a_cell) ...@@ -431,7 +431,7 @@ int dap_chain_cell_load(dap_chain_t *a_chain, dap_chain_cell_t *a_cell)
if (a_chain->is_mapped) if (a_chain->is_mapped)
a_cell->map_pos += l_pos; a_cell->map_pos += l_pos;
if (l_size == l_pos) { if (l_size == l_pos) {
fseek(a_cell->file_storage, l_pos, SEEK_END); fseek(a_cell->file_storage, l_pos, SEEK_SET);
return 0; return 0;
} }
...@@ -451,7 +451,6 @@ int dap_chain_cell_load(dap_chain_t *a_chain, dap_chain_cell_t *a_cell) ...@@ -451,7 +451,6 @@ int dap_chain_cell_load(dap_chain_t *a_chain, dap_chain_cell_t *a_cell)
a_chain->callback_atom_add(a_chain, l_atom, l_el_size, &l_atom_hash); a_chain->callback_atom_add(a_chain, l_atom, l_el_size, &l_atom_hash);
a_cell->map_pos += l_el_size; a_cell->map_pos += l_el_size;
} }
fseek(a_cell->file_storage, l_pos, SEEK_SET);
} else { } else {
DAP_DELETE(l_hdr); DAP_DELETE(l_hdr);
size_t l_read = 0; size_t l_read = 0;
...@@ -483,8 +482,8 @@ int dap_chain_cell_load(dap_chain_t *a_chain, dap_chain_cell_t *a_cell) ...@@ -483,8 +482,8 @@ int dap_chain_cell_load(dap_chain_t *a_chain, dap_chain_cell_t *a_cell)
} }
++q; ++q;
} }
fseek(a_cell->file_storage, l_pos, SEEK_SET);
} }
fseek(a_cell->file_storage, l_pos, SEEK_SET);
log_it(L_INFO, "Loaded %lu atoms in cell %s", q, a_cell->file_storage_path); log_it(L_INFO, "Loaded %lu atoms in cell %s", q, a_cell->file_storage_path);
return l_ret; return l_ret;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment