From 1605656c734dded67b4228f033519e7ba9b80268 Mon Sep 17 00:00:00 2001 From: Jake Waksbaum Date: Mon, 19 Jan 2026 14:41:32 -0500 Subject: [PATCH] Exception: fix constructor --- include/libgourou_common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/libgourou_common.h b/include/libgourou_common.h index 6c57a4e..7c3d46b 100644 --- a/include/libgourou_common.h +++ b/include/libgourou_common.h @@ -165,8 +165,8 @@ namespace gourou Exception(const Exception& other) { this->code = other.code; - this->line = line; - this->file = file; + this->line = other.line; + this->file = other.file; this->fullmessage = strdup(other.fullmessage); }