In addition to what @Mehrdad Afshari wrote, I just want to point out that it is actually very important that tail recursion (or more generally a chain of tail calls) can be potentially infinite, because otherwise you couldn't write a web server, an operating system, an interpreter, a REPL, or really any kind of event processing loop in a functional language.
After all, an operating system is nothing but an infinite loop, and the way to write a loop in a functional language is using tail recursion. If tail recursion weren't infinite, the loop wouldn't be infinite. Therefore, you could not only not write an operating system, the language wouldn't even be Turing-complete.
Basically, this is how you write a web server in a functional language:
def loop(queue) = {
// handle first request in queue
loop(queue)
}
Without infinite tail recursion, this would quickly run out of memory.