projects
/
platform
/
core
/
security
/
privacy-guard.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e42cf46
)
Fix the string copy error
64/147964/1
accepted/tizen/unified/20170907.060340
submit/tizen/20170907.004521
author
jungkon.kim
<jungkon.kim@samsung.com>
Wed, 6 Sep 2017 06:39:21 +0000
(15:39 +0900)
committer
jungkon.kim
<jungkon.kim@samsung.com>
Wed, 6 Sep 2017 06:39:28 +0000
(15:39 +0900)
Change-Id: If307b38556e0760b359264d4a3a87ff11abb4708
common/src/pg_strlcpy.c
patch
|
blob
|
history
diff --git
a/common/src/pg_strlcpy.c
b/common/src/pg_strlcpy.c
index d00139a9b3ef7d7d6ea9f8648d41555bce3b1d63..09b5200c65e2ba40a39f74b49136ba6875b0c430 100644
(file)
--- a/
common/src/pg_strlcpy.c
+++ b/
common/src/pg_strlcpy.c
@@
-31,7
+31,7
@@
void pg_strlcpy(char *dst, const char *src, size_t dstsize)
return;
}
if (dstsize > 0) {
- strncpy(dst, src, dstsize
- 1
);
- dst[dstsize
- 1
] = '\0';
+ strncpy(dst, src, dstsize);
+ dst[dstsize] = '\0';
}
}