From 0ef47568ed93872feab423330b10a62a432decd5 Mon Sep 17 00:00:00 2001 From: Andreas Huber Date: Thu, 3 Dec 2009 16:07:05 -0800 Subject: Apparently strlcpy is not part of a standard linux distribution... Unbreaking the sim build. --- media/libstagefright/omx/OMXSoftwareCodecsPlugin.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'media/libstagefright/omx') diff --git a/media/libstagefright/omx/OMXSoftwareCodecsPlugin.cpp b/media/libstagefright/omx/OMXSoftwareCodecsPlugin.cpp index 955e509..22f58cc 100644 --- a/media/libstagefright/omx/OMXSoftwareCodecsPlugin.cpp +++ b/media/libstagefright/omx/OMXSoftwareCodecsPlugin.cpp @@ -74,7 +74,8 @@ OMX_ERRORTYPE OMXSoftwareCodecsPlugin::enumerateComponents( return OMX_ErrorNoMore; } - strlcpy(name, kComponentInfos[index].mName, size); + strncpy(name, kComponentInfos[index].mName, size - 1); + name[size - 1] = '\0'; return OMX_ErrorNone; } -- cgit v1.1