Analyze this C++ function designed to find the lowest common ancestor (LCA) in a Binary Search Tree (BST). Is it correctly implemented?
Node* lca(Node* root, int n1, int n2) {
if (root == NULL) return NULL;
if (root->data > n1 && root->data > n2)
return lca(root->left, n1, n2);
if (root->data < n1 && root->data < n2)
return lca(root->right, n1, n2);
return root;
}