Comment 3 for bug 1400276

Revision history for this message
Roberto Mier Escandon (rmescandon) wrote :

Problem is related with OutboundPkt. Looks like if library is created dynamically, not needed to create dynamically the OutboundPkt objects, but both them cannot be statically created. At least one must be dynamic.
As we don't know how the library is going to be used we can do one of these:
- Force to create library dynamically (explained so in lib documentation)
- Refactor all OuboundPkt static allocated memory objects to be created dynamically using a QSharedPointer (this last could be good to avoid memory leaks)