Posts: 7,801
Threads: 187
Joined: Feb 2010
Reputation:
0
Huge strings.
For example, having new string[256] and new string[3000] everywhere.
Posts: 772
Threads: 223
Joined: Sep 2011
Reputation:
0
Thanks :P Probably my query's :3
Posts: 1,781
Threads: 13
Joined: Sep 2009
Reputation:
0
recursion could be that some of your functions are referring to eachother, like calling them selfes until a certain condition is met. this will fill up the heap/stack and crash when its full.
to get rod of that, organize your callbacks like "master" (the caller) and "slave" (the called), and then see if a slave (called) functin calls others, which again closes the circle. if that ever happens, its only about time when the script will fail.