Skip to content

Commit

Permalink
release: 3.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ewasjon committed Jan 30, 2024
1 parent c762fe9 commit 3c7a485
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## [3.4.1]
- Fixed a crash due to missing null pointer check in NMEA `ThreadedReceiver`.

## [3.4.0]
- Support for receivers that communicate using NMEA protocol has been added. The following sentences are now supported:
- GGA
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ find_package(OpenSSL REQUIRED)
endif (USE_OPENSSL)

add_definitions(-D_POSIX_C_SOURCE=200809L)
add_definitions(-DCLIENT_VERSION="3.4.0")
add_definitions(-DCLIENT_VERSION="3.4.1")

if(${ASN_DEBUG})
add_definitions(-DASN_EMIT_DEBUG=1)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SUPL 3GPP LPP client

![version](https://img.shields.io/badge/version-3.4.0-green)
![version](https://img.shields.io/badge/version-3.4.1-green)
![license](https://img.shields.io/badge/license-MXM-blue)

This project is a set of libraries, examples and tools to facilitate the development of 3GPP LPP clients.
Expand Down
3 changes: 0 additions & 3 deletions receiver/nmea/threaded_receiver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ std::unique_ptr<GgaMessage> ThreadedReceiver::gga() NMEA_NOEXCEPT {

if (!mGga) return nullptr;
auto gga = std::unique_ptr<GgaMessage>(new GgaMessage{*mGga.get()});
// auto gga = std::move(mGga);
RNT_DEBUG("[rnt] unlock (gga)\n");
return gga;
}
Expand All @@ -130,7 +129,6 @@ std::unique_ptr<VtgMessage> ThreadedReceiver::vtg() NMEA_NOEXCEPT {

if(!mVtg) return nullptr;
auto vtg = std::unique_ptr<VtgMessage>(new VtgMessage{*mVtg.get()});
// auto vtg = std::move(mVtg);
RNT_DEBUG("[rnt] unlock (vtg)\n");
return vtg;
}
Expand All @@ -142,7 +140,6 @@ std::unique_ptr<GstMessage> ThreadedReceiver::gst() NMEA_NOEXCEPT {

if(!mGst) return nullptr;
auto gst = std::unique_ptr<GstMessage>(new GstMessage{*mGst.get()});
// auto gst = std::move(mGst);
RNT_DEBUG("[rnt] unlock (gst)\n");
return gst;
}
Expand Down

0 comments on commit 3c7a485

Please sign in to comment.