Sky
unread,May 16, 2012, 7:52:41 AM5/16/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Protocol Buffers
Hi,
I made a message, named RequestModel and when I declare pointer of
RequestModel like :
LOG("MSG_BEFORE");
RequestModel *mmodel;
......
My module get loaded by apache and I get the MSG_BEFORE in my apache
log.
But when I "new" my object, apache does'nt even call my function
without any error or segmentation fault :
LOG("MSG_BEFORE");
RequestModel *mmodel=new RequestModel() ;
......
this way I don't get MSG_BEFORE in apache error.log.
can some one guess what's going on?
Regards,
Sky