Fabian Steiner wrote:
> What did I do wrong? As I am quite new to C, I probably made many 
> mistakes, so please feel free to correct me.
The following line:

 >     for (i = 0; i <= seqlen; i++) {

Should be "for (i = 0; i < seqlen; i++) {". Otherwise the last 
assignment will be out of bounds and probably corrupts heap.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to