In one case, which I could think of, this can complicate the situation, as it will begin to block further development.
Note that you are developing function A, which will immediately appear in the next version. Now there is another development team that will work on function B, which is highly dependent on function A, but it should only be released after a few sprints. So, obviously, we will separate function B from function A.
Now you find an error in function A, your release for function A is approaching quickly, you have two options: fix / hack or correct code coefficient and fix.
Over time, as a limitation, it is reasonable to have a hot-fix, but, given the future, we need the right re-factor and correction.
The good news is that we can go for both.
With your strategy (as I understand it), your release branch will receive all the corrections and corrections (contains 5+ commits), since you cannot do anything like that for function A (if you strictly adhere to the rules). Consider the number of releases of these fixes if you have 10 more features.
But with the Vincent Driessen strategy, there is always a development branch, like a prefix between your function and release, so for such hot fixes you can merge back into the development branch, and then from there for hot fixes, and then merge back into development and then release it. And you have the advantage of no hacks / fixes anywhere on your branch. Further functions based on this function may continue in parallel. And you can refuse branches of corrections or delete from history. This is just one point of view, and you can probably defend your strategy in this case. I am open to further discussions and corrections in my answer :)
And here is a rather unpleasant image depicting what I am transmitting. 
Jesly varghese
source share