[vala/wip/transform: 55/95] dbus: Copy type when declaring temporary variables
- From: Rico Tzschichholz <ricotz src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vala/wip/transform: 55/95] dbus: Copy type when declaring temporary variables
- Date: Mon, 20 Mar 2017 14:33:06 +0000 (UTC)
commit 1c952046fbbcab0041449b7aef568fbc7568c42f
Author: Luca Bruno <lucabru src gnome org>
Date: Fri Oct 26 13:46:42 2012 +0200
dbus: Copy type when declaring temporary variables
If type is not copied, then the semantic analyzer will modify the
original type.
codegen/valagdbusservertransformer.vala | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/codegen/valagdbusservertransformer.vala b/codegen/valagdbusservertransformer.vala
index 16dac30..ed214f1 100644
--- a/codegen/valagdbusservertransformer.vala
+++ b/codegen/valagdbusservertransformer.vala
@@ -106,7 +106,7 @@ public class Vala.GDBusServerTransformer : GDBusClientTransformer {
b.open_try ();
string result = null;
if (m.has_result) {
- result = b.add_temp_declaration (m.return_type);
+ result = b.add_temp_declaration (copy_type (m.return_type));
b.add_assignment (expression (result), finish_call);
} else {
b.add_expression (finish_call);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]