<div dir="ltr"><div dir="ltr"><div>Hi<br><br>I have created the patch and attached it with this mail. Kindly review it. I have commented some of the test as it fails(gives 
segmentation fault) when authtoken is NULL. I think we should test tok 
for NULL before accessing its elements. Please correct me if am wrong. <br><br>
</div><div>for example : <br><br></div><div>uint8_t *sss_authtok_get_data(struct sss_auth_token *tok)<br>{<br></div><div>    return tok-&gt;data;<br></div><div>}<br><br></div><div>This should be written as:<br></div><div>

<br><div>uint8_t *sss_authtok_get_data(struct sss_auth_token *tok)<br>{<br></div><div>    if(!tok) {<br></div><div>        return EINVAL;<br>    }  <br></div><div>    return tok-&gt;data;<br></div>}<br><br></div><div>Thanking You,<br>
</div><div>Pallavi<br></div></div></div>