no point in clearing a local variable just before return

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@24462 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Luigi Rizzo
2006-05-03 17:30:37 +00:00
parent b569ebd593
commit d1caf26728

View File

@@ -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;
}