Skip to content
Snippets Groups Projects
Commit fcce9bb2 authored by Howard Chu's avatar Howard Chu
Browse files

Fix ldbm_tool_entry_first, was not byteswapping ID.

parent 73300160
No related branches found
No related tags found
No related merge requests found
......@@ -91,6 +91,9 @@ ID ldbm_tool_entry_first(
}
AC_MEMCPY( &id, key.dptr, key.dsize );
#ifndef WORDS_BIGENDIAN
id = ntohl( id );
#endif
ldbm_datum_free( id2entry->dbc_db, key );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment