From 25a8e9022286664c581a4525fd931903d6c68767 Mon Sep 17 00:00:00 2001 From: skarg Date: Thu, 1 Dec 2005 17:45:32 +0000 Subject: [PATCH] Corrected bug #1359439 which had some misuse of pointers in it. Note that this file is still a work in progress and does not compile yet. --- bacnet-stack/rpm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bacnet-stack/rpm.c b/bacnet-stack/rpm.c index a5213705..99709c40 100644 --- a/bacnet-stack/rpm.c +++ b/bacnet-stack/rpm.c @@ -475,8 +475,8 @@ int rpm_ack_decode_object_property_value( if (apdu && apdu_len && object_property && array_index) { // don't decode the application tag number or its data here - application_data = &apdu[len]; - application_data_len = apdu_len - len - 1 /*closing tag*/; + *application_data = &apdu[len]; + *application_data_len = apdu_len - len - 1 /*closing tag*/; /* FIXME: check for closing tag?*/ }