Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v7.0.1] - February 22, 2026

### Fixed

- Fixed a crash on ARM64 Windows where `va_start` corrupted the `time` field in a log event, causing an assertion failure inside `strftime()`.

## [v7.0.0] - October 23, 2025

> 🚨 **BREAKING CHANGES**: Complete API redesign from v6.5.0. This is a major architectural overhaul with new type system, function names, and build configuration.
Expand Down
5 changes: 4 additions & 1 deletion src/ulog.c
Original file line number Diff line number Diff line change
Expand Up @@ -1797,8 +1797,11 @@ void ulog_log(ulog_level level, const char *file, int line, const char *topic,
}

ulog_event ev = {0};
log_fill_event(&ev, message, level, file, line, topic_id);
va_start(ev.message_format_args, message);

// IMPORTANT: filling the events should be after the vs_start for compatibility
// with the VS ARM64 compiler behavior
log_fill_event(&ev, message, level, file, line, topic_id);

prefix_update(&ev);

Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.0.0
7.0.1