Kaydet (Commit) ebb1bb16 authored tarafından László Németh's avatar László Németh

fdo#59969 crash fix (insecure clear screen during Logo execution)

Change-Id: Id0af5555685c67c02fecd8b10a40d4fb8135a2df
üst 9c8432ca
...@@ -633,6 +633,8 @@ def home(arg=None): ...@@ -633,6 +633,8 @@ def home(arg=None):
__removeshape__(__ACTUAL__) __removeshape__(__ACTUAL__)
def clearscreen(arg=None): def clearscreen(arg=None):
if __thread__:
return None
__getdocument__() __getdocument__()
turtle = __getshape__(__TURTLE__) turtle = __getshape__(__TURTLE__)
if not turtle: if not turtle:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment