Skip to content

Commit

Permalink
Corrected: Null pointer dereference in the event queue handling code #34
Browse files Browse the repository at this point in the history
  • Loading branch information
jyberg committed Dec 17, 2023
1 parent 3448d5b commit c843dd7
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Enhanced-Nextion-Library",
"version": "1.4.2",
"version": "1.4.3",
"repository": {
"type": "git",
"url": "https://github.com/jyberg/Enhanced-Nextion-Library.git",
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=Enhanced-Nextion-Library
version=1.4.2
version=1.4.3
license=MIT
author=Jyrki Berg
maintainer=Jyrki Berg
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Enhanced Nextion Library with multi display instance support

Jyrki Berg 2/8/2020 (<https://github.com/jyberg>) Version 1.4.2
Jyrki Berg 2/8/2020 (<https://github.com/jyberg>) Version 1.4.3

## Introduction

Expand Down
3 changes: 3 additions & 0 deletions release_notes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Release Notes
--------------------------------------------------------------------------------

# Release v1.4.3
Corrected issue: Null pointer dereference in the event queue handling code #34

# Release v1.4.2
Enabled attachPush call back function initialization for every component.

Expand Down
2 changes: 1 addition & 1 deletion src/NexHardware.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ void Nextion::ReadQueuedEvents()
}
else
{
nexQueuedEvent *last = m_queuedEvents->m_next;
nexQueuedEvent *last = m_queuedEvents;
while( last->m_next)
{
last = last->m_next;
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.2
1.4.3

0 comments on commit c843dd7

Please sign in to comment.