Hello. What's wrong with this code snippet?

1
2
3
4
5
6
       int    **lBucket;

       lBucket = new int*[iWorldSize];//iWorldSize is the nummber of processors
		 
 	 for(i=0;i<iWorldSize;++i)
	    lBucket[i] = new int[m];


Thanks in advance