From 1789e6634ae0da3673c9e4cbda1fd8f44a9288d7 Mon Sep 17 00:00:00 2001 From: kevin Date: Thu, 25 May 2023 16:04:49 -0400 Subject: [PATCH] cwSvgMidi.cpp : Fix missing hRRef.set(p) in create(). --- cwSvgMidi.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cwSvgMidi.cpp b/cwSvgMidi.cpp index d617883..f6ac60c 100644 --- a/cwSvgMidi.cpp +++ b/cwSvgMidi.cpp @@ -386,6 +386,8 @@ cw::rc_t cw::svg_midi::create( handle_t& hRef ) goto errLabel; } + hRef.set(p); + errLabel: return rc; }