Skip to content
Snippets Groups Projects
Commit 5b6c6b58 authored by Hallvard Furuseth's avatar Hallvard Furuseth
Browse files

Fix SAFEMEMCPY bug from revision 1.32 in idl_insert()

parent 5bb08cba
No related branches found
No related tags found
No related merge requests found
......@@ -659,8 +659,8 @@ idl_insert( ID_BLOCK **idl, ID id, unsigned int maxids )
}
/* make a slot for the new id */
SAFEMEMCPY( &ID_BLOCK_ID(*idl, i), &ID_BLOCK_ID(*idl, i+1),
ID_BLOCK_NIDS(*idl) - i );
SAFEMEMCPY( &ID_BLOCK_ID(*idl, i+1), &ID_BLOCK_ID(*idl, i),
(ID_BLOCK_NIDS(*idl) - i) * sizeof(ID) );
ID_BLOCK_ID(*idl, i) = id;
ID_BLOCK_NIDS(*idl)++;
......
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