keep index and count parameters

git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@3023 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
nils 2006-09-24 12:50:41 +00:00
parent bf389495a8
commit 8d38746c28
1 changed files with 3 additions and 0 deletions

View File

@ -285,6 +285,9 @@ int sc_concatenate_path(sc_path_t *d, const sc_path_t *p1, const sc_path_t *p2)
memcpy(tpath.value + p1->len, p2->value, p2->len);
tpath.len = p1->len + p2->len;
tpath.type = SC_PATH_TYPE_PATH;
/* use 'index' and 'count' entry of the second path object */
tpath.index = p2->index;
tpath.count = p2->count;
*d = tpath;