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.

After compiling the source to .o files and using "ar rcs libMyLibrarylib.a *.o" to make the library I am getting segfaults because I am using a header file with the member variables and private functions striped out. When I use the exact same header I do not get the faults. The segfaults happen when deleting the pointers in the map.

header used to create the lib

#include <**Type**>
class A
{
   public:
    A();
    ~A(); //In the destructor I iterate through the map to free everything before
    void function();
   private:
    void privateFunction();
    std::map<**Type**, int*> myMap;
}

header used with the compiled library

class A
{
   public:
    A();
    ~A();
    void function();
}

Is there slicing or something when not using the exact header file? I want to hide the #include of Type from whomever is using the lib.

I have unit tests for the library, it does not segfault but it uses the same header file as was used to compile it.

share|improve this question

2 Answers

up vote 6 down vote accepted

That's an illformed program, and you're running into undefined behavior. A class definition must be exactly the same across translation units in a program - as per 3.2 One definition rule [basic.def.odr] \6.

To hide the include of Type, you can just use the PIMPL idiom and not resort to these types of hacks.

class AImpl;
class A
{
   public:
    A();
    ~A(); //In the destructor I iterate through the map to free everything before
    void function();
   private:
    AImpl* pImpl;
}

You just move all logic and data members inside AImpl and keep the public interface as clean as possible. And all you need is a forward declaration of AImpl.

share|improve this answer
What if I need hide the private functions and member variables for security reasons? – eliteslayer Feb 13 at 22:53
1  
@eliteslayer pimpl. – Luchian Grigore Feb 13 at 22:53
1  
As Luchian said in his post, use the PIMPL idiom. – Nik Bougalis Feb 13 at 22:54
@eliteslayer If you're worried about security, use interfaces (i.e. abstract classes). – Peter Wood Feb 13 at 23:06
This worked and actually made my implementation of unit tests cleaner. – eliteslayer Feb 14 at 3:44

In the client code your object has a different size. This will overwrite memory when the object is allocated in the stack or in the heap.

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.