Invalid access of stack red zone from Java VM

后端 未结 4 2196
鱼传尺愫
鱼传尺愫 2021-02-19 06:05

I\'m trying to figure out what can cause this error in Java:

Invalid access of stack red zone 0x115ee0ed0 rip=0x114973900

Has anyone ever encou

4条回答
  •  情歌与酒
    2021-02-19 06:34

    As already mentioned, this is appears to be a stealth stack overflow. Bump up your stack size JVM parameter (-Xss). In my case, going from -Xss128k to -Xss1024k did the trick.

提交回复
热议问题