how about the following:

    var cds1  : TClientDataSet;
        cds2  : TClientDataSet;
        cds3  : TClientDataSet;
        cds4  : TClientDataSet;
    begin
      cds1      := Nil;
      cds2      := Nil;
      cds3      := Nil;
      cds4      := Nil;
      try
        cds1      := TClientDataSet.Create(application);
        cds2      := TClientDataSet.Create(application);
        cds3      := TClientDataSet.Create(application);
        cds4      := TClientDataSet.Create(application);
        ///////////////////////////////////////////////////////////////////////
        ///      DO WHAT NEEDS TO BE DONE
        ///////////////////////////////////////////////////////////////////////
      finally
        freeandnil(cds4);
        freeandnil(cds3);
        freeandnil(cds2);
        freeandnil(Cds1);
      end;
    end;

This keeps it compact, and only attempts to free the instances which were created.  There really is no need to perform the nesting since ANY failure will result in dropping to the finally and performing all of the cleanup in the example you provided.

Personally I try not to nest within the same method... with the exception being a try/try/except/finally scenario.  If I find myself needing to nest, then to me that is a great time to think refactoring into another method call.

**EDIT** Cleaned up a bit thanks to the comments by [mghie][1] and [utku][2].


  [1]: http://stackoverflow.com/users/30568/mghie
  [2]: http://stackoverflow.com/users/14716/utku-karatas