It seems as though you're trying to transverse a linked-list, beginning at the head. And at each node, you're assigning the the "ith" character of "s" to the current pointed-to node's data. If this is the case, then your code can be easily simplified:
I haven't tested the code yet, so I apologise in advance if it doesn't work :) Your problem is most likely the result of attempting to access an address in memory that your program doesn't own; hence the seg-fault.