aboutsummaryrefslogtreecommitdiffstats
path: root/channel.c
diff options
context:
space:
mode:
authorrizzo <rizzo@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-03 17:30:37 +0000
committerrizzo <rizzo@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-03 17:30:37 +0000
commit05304ec8ee838d9fa6fd36d4dbaa7dbf3e94f1ba (patch)
treeee18b55351db8a19f108a3bfe4a34975383c7585 /channel.c
parent89c5a6308818c249d43df8c2e80717b14fa6edf3 (diff)
no point in clearing a local variable just before return
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@24462 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channel.c')
-rw-r--r--channel.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/channel.c b/channel.c
index aba97cf7f..c38b37547 100644
--- a/channel.c
+++ b/channel.c
@@ -1033,7 +1033,6 @@ int ast_channel_datastore_free(struct ast_datastore *datastore)
/* Finally free memory used by ourselves */
free(datastore);
- datastore = NULL;
return res;
}