Changeset 1313 in Sophya


Ignore:
Timestamp:
Nov 9, 2000, 4:54:52 PM (25 years ago)
Author:
ansari
Message:

Correction de bug init pointeur ds FFTPackServer - Reza 9/11/2000

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/NTools/fftpserver.cc

    r896 r1313  
    6969
    7070{
    71   sz_rfft = 0;     //the working array and its size for the different
    72   ws_rfft = NULL;  //possible numerical types
     71//the working array and its size for the different
     72//possible numerical types
     73  sz_rfft = 0;     
     74  ws_rfft = NULL; 
     75  sz_dfft = 0;     
     76  ws_dfft = NULL; 
    7377  sz_cfft = 0;
    7478  ws_cfft = NULL;
     
    8084{
    8185if (ws_rfft) delete[] ws_rfft;
     86if (ws_dfft) delete[] ws_dfft;
    8287if (ws_cfft) delete[] ws_cfft;
    8388if (ws_cdfft) delete[] ws_cdfft;
Note: See TracChangeset for help on using the changeset viewer.