Hello , I am using OpenSAF release 5.17.07 with openHPI . I configured OpenSAF with "PLM enabled" . My aim was to discover "simulation.data" of openHPI , by configuring "isHpiSupported" = 1 in imm.xml , so that PLM discovers simulation data through HPI APIs.
When PLM server (plmd) tried to establish session with HPI , plmd service crashed . On investigating it was found that plmd segmentation fault occurred due to the issue of "uninitialized pointers " . The issue was with pointers to several data structures. In Ticket no: 1961 , the same issue has already been reported by another user over opensaf release 5.0.0 . My query is , since this issue is already reported in release 5.0.0 and I am using release 5.17.07 , is it not resolved yet ? I have resolved the issue as following : Originally in Opensaf Code : PLMS_CB *plmscb = plms_cb; Changes done by me static PLMS_CB _plms_cb; PLMS_CB *plmscb = &_plms_cb; The above logic was applied for the following pointers : (i)PLMS_HRB_CB *cb = hrb_cb; ( file : plms_hrb.c , plms_hrb_mds.c) (ii)PLMS_HSM_CB *cb = hsm_cb; (file : plms_hsm.c) (iii)PLMS_CB *plmscb = plms_cb; (file :plms_hsm.c) Thanks & regards Soma -------------------------------------------------------------------------------- ::Disclaimer:: -------------------------------------------------------------------------------- The contents of this email and any attachment(s) are confidential and intended for the named recipient(s) only. It shall not attach any liability on C-DOT. Any views or opinions presented in this email are solely those of the author and may not necessarily reflect the opinions of C-DOT. Any form of reproduction, dissemination, copying, disclosure, modification, distribution and / or publication of this message without the prior written consent of the author of this e-mail is strictly prohibited. If you have received this email in error please delete it and notify the sender immediately. -------------------------------------------------------------------------------- ------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot _______________________________________________ Opensaf-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/opensaf-users
