]> rtime.felk.cvut.cz Git - lisovros/qemu_apohw.git/commit
libcacard: replace pstrcpy() with memcpy()
authorMichael Tokarev <mjt@tls.msk.ru>
Fri, 2 May 2014 14:35:59 +0000 (18:35 +0400)
committerMichael Tokarev <mjt@tls.msk.ru>
Wed, 7 May 2014 17:00:43 +0000 (21:00 +0400)
commita22f8f38942623dc473bf5ced5b4117b8bdf4821
tree752a06838cc68447d756e685833cb327d81d0596
parentf95c967a7950797109d2a96fcfa2e3a2899f2c99
libcacard: replace pstrcpy() with memcpy()

Commit 2e679780ae86c6ca8 replaced strncpy() with pstrcpy()
in one place in libcacard.  This is a qemu-specific function,
while libcacard is a stand-alone library (or tries to be).
But since we know the exact length of the string to copy,
and know that it definitely will fit in the destination
buffer, use memcpy() instead, and null-terminate the string
after that.

An alternative is to use g_strlcpy() or strncpy(), but memcpy()
is more than adequate in this place.

Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Cc: qemu-trivial@nongnu.org
Cc: Alon Levy <alevy@redhat.com>
libcacard/vcard_emul_nss.c