Undo with text editor and run script crashes blender #54494

Closed
opened 2018-04-02 18:24:06 +02:00 by Rob Hughes · 8 comments

System Information
5820K GTX 970

Blender Version
Latest daily build

Short description of error
Text editor undo after run script can crash Blender

Crash line of code is in text.c - function txt_do_undo - line 2002
int op = text->undo_buf[text->undo_pos];

Reason looks to be that text->undo pos is negative here.

The test to check for a negative value is not made till later.

Possible code change....

     
int op;
int prev_flags;
unsigned int linep;
unsigned int uni_char;
unsigned int curln, selln;
unsigned short curc, selc;
unsigned short charp;
char *buf;
	
if (text->undo_pos < 0) {
	return;
}
op = text->undo_buf[text->undo_pos];

Exact steps for others to reproduce the error
Load file - press run script - do undo a couple of times

{F2576462}

**System Information** 5820K GTX 970 **Blender Version** Latest daily build **Short description of error** Text editor undo after run script can crash Blender Crash line of code is in text.c - function txt_do_undo - line 2002 int op = text->undo_buf[text->undo_pos]; Reason looks to be that text->undo pos is negative here. The test to check for a negative value is not made till later. Possible code change.... ``` ``` ``` int op; int prev_flags; unsigned int linep; unsigned int uni_char; unsigned int curln, selln; unsigned short curc, selc; unsigned short charp; char *buf; if (text->undo_pos < 0) { return; } op = text->undo_buf[text->undo_pos]; ``` **Exact steps for others to reproduce the error** Load file - press run script - do undo a couple of times {F2576462}
Author

Added subscriber: @RevDr

Added subscriber: @RevDr
Vuk Gardašević changed title from Undo with text editor and runs cript crashes blender to Undo with text editor and run script crashes blender 2018-04-02 19:40:09 +02:00
Member

Added subscriber: @lichtwerk

Added subscriber: @lichtwerk
Philipp Oeser self-assigned this 2018-04-04 14:52:35 +02:00
Member

Can confirm this [had to press "Run Script" twice before undo to trigger crash], suggested code change also makes sense at first sight, will doublecheck later...

Can confirm this [had to press "Run Script" twice before undo to trigger crash], suggested code change also makes sense at first sight, will doublecheck later...
Author

Although I am sure the change will fix the crash. What I am unsure of (as I don't really know the code) is if calling the function txt_do_undo with text->undo_pos with a value of -1 is a code design feature of if it indicates something else is not right somewhere else.

Although I am sure the change will fix the crash. What I am unsure of (as I don't really know the code) is if calling the function txt_do_undo with text->undo_pos with a value of -1 is a code design feature of if it indicates something else is not right somewhere else.

Added subscriber: @ideasman42

Added subscriber: @ideasman42
Philipp Oeser was unassigned by Campbell Barton 2018-04-05 08:27:39 +02:00
Campbell Barton self-assigned this 2018-04-05 08:27:39 +02:00

This would be caused by recent undo restructuring, will look into it.

This would be caused by recent undo restructuring, will look into it.

Changed status from 'Open' to: 'Resolved'

Changed status from 'Open' to: 'Resolved'

Fixed 47b6e23271

Fixed 47b6e23271
Sign in to join this conversation.
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset Browser
Interest
Asset Browser Project Overview
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
EEVEE & Viewport
Interest
Freestyle
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
ID Management
Interest
Images & Movies
Interest
Import Export
Interest
Line Art
Interest
Masking
Interest
Metal
Interest
Modeling
Interest
Modifiers
Interest
Motion Tracking
Interest
Nodes & Physics
Interest
OpenGL
Interest
Overlay
Interest
Overrides
Interest
Performance
Interest
Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds & Tests
Interest
Python API
Interest
Render & Cycles
Interest
Render Pipeline
Interest
Sculpt, Paint & Texture
Interest
Text Editor
Interest
Translations
Interest
Triaging
Interest
Undo
Interest
USD
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Interest
Video Sequencer
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
Legacy
Blender 2.8 Project
Legacy
Milestone 1: Basic, Local Asset Browser
Legacy
OpenGL Error
Meta
Good First Issue
Meta
Papercut
Meta
Retrospective
Meta
Security
Module
Animation & Rigging
Module
Core
Module
Development Management
Module
EEVEE & Viewport
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline, Assets & IO
Module
Platforms, Builds & Tests
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Priority
High
Priority
Low
Priority
Normal
Priority
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No project
No Assignees
3 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blender/blender#54494
No description provided.