Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the code below:

std::string myName = "BLABLABLA";

//check if there are illegal characters
for (unsigned int i = 0; i < myName.length(); i++)
{
    const char& c = myName[i];
    if (!(isalnum(c) || (c == '_') || (c == '-')))
    {
        return 0;
    }      

}

This is the output of valgrind at line "const char& c = myName[i];"

==17249== 51 bytes in 1 blocks are possibly lost in loss record 116 of 224
==17249==    at 0x4C2714E: operator new(unsigned long) (vg_replace_malloc.c:261)
==17249==    by 0x602A498: std::string::_Rep::_S_create(unsigned long, unsigned long,       
std::allocator<char> const&) (in /usr/lib64/libstdc++.so.6.0.16)
==17249==    by 0x602A689: std::string::_M_mutate(unsigned long, unsigned long,   
unsigned long) (in /usr/lib64/libstdc++.so.6.0.16)
==17249==    by 0x602AFB5: std::string::_M_leak_hard() (in 
/usr/lib64/libstdc++.so.6.0.16)
==17249==    by 0x602B0A4: std::string::operator[](unsigned long) (in /
/usr/lib64/libstdc++.so.6.0.16)

I do not see anything wrong with this...

share|improve this question
The devil is in the details. More specifically, inside GCC's std::string. It's not your fault. It's not your fault. – Kerrek SB Sep 26 '12 at 14:47
@KerrekSB gcc's string leaking? – Luchian Grigore Sep 26 '12 at 14:48
@LuchianGrigore: Yeah. It's the refcount business... – Kerrek SB Sep 26 '12 at 14:51
1  
Try adding #define _GLIBCXX_FULLY_DYNAMIC_STRING 1 at the very top of your source code. – Kerrek SB Sep 26 '12 at 14:51
Thank you guys. – Kam Sep 26 '12 at 14:53

1 Answer

up vote 1 down vote accepted

Yes, it's the horrible COW implementation! You can also force use of the const (and therefore non-mutating) overloads like so:

std::string const myName = "BLABLABLA";

//check if there are illegal characters
for (unsigned int i = 0; i < myName.length(); i++)
{
    const char& c = myName[i];
    if (!(isalnum(c) || (c == '_') || (c == '-')))
    {
        return 0;
    }      
}

or (if you don't want to modify the original string type):

std::string myName = "BLABLABLA";
std::string const &cref = myName;
//check if there are illegal characters
for (unsigned int i = 0; i < myName.length(); i++)
{
    const char& c = cref[i];
    if (!(isalnum(c) || (c == '_') || (c == '-')))
    {
        return 0;
    }      
}

etc.


COW reference, because I knew I'd written something about it somewhere.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.