projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Only filter out duplicate -libraries. Let other constructs
[wxWidgets.git]
/
src
/
common
/
strconv.cpp
diff --git
a/src/common/strconv.cpp
b/src/common/strconv.cpp
index 70493dbc12904a81d89c459dfe77136a175e8b75..ca7031528b076ec5d5a777a97aa661933a07f866 100644
(file)
--- a/
src/common/strconv.cpp
+++ b/
src/common/strconv.cpp
@@
-2216,7
+2216,10
@@
public:
{
size_t inbuf = strlen(psz);
if (buf)
{
size_t inbuf = strlen(psz);
if (buf)
- m2w.Convert(psz,buf);
+ {
+ if (!m2w.Convert(psz,buf))
+ return (size_t)-1;
+ }
return inbuf;
}
return inbuf;
}
@@
-2224,7
+2227,10
@@
public:
{
const size_t inbuf = wxWcslen(psz);
if (buf)
{
const size_t inbuf = wxWcslen(psz);
if (buf)
- w2m.Convert(psz,buf);
+ {
+ if (!w2m.Convert(psz,buf))
+ return (size_t)-1;
+ }
return inbuf;
}
return inbuf;
}