Hello ,<br><br>After painful debugging I found the following piece of code, which made me confused.<br><br>  if(e->faces(0)) {<br>    g1 = e->faces(0)->g;<br>    del_face(e->faces(0));<br>  }<br> <br>  // not a bug !!!<br>
  if(e->faces(0)) {<br>    g2 = e->faces(0)->g;<br>    del_face(e->faces(0));<br>  }<br><br><br>Interestingly, commend say, it is not bug. Isn't it the duplication and trying to remove the<br>same face twice.<br>
<br>I get segmenation fault  for the second {    }  execution.<br><br>Can Someone explain what is happening ?<br><br>csv<br><br>