Index: trunk/psLib/src/dataManip/psMinimize.c
===================================================================
--- trunk/psLib/src/dataManip/psMinimize.c	(revision 1103)
+++ trunk/psLib/src/dataManip/psMinimize.c	(revision 1107)
@@ -193,4 +193,5 @@
                         gsl_matrix *J)
 {
+    return 0;
     gsl_function_f(x, params, f);
     gsl_function_df(x, params, J);
@@ -230,5 +231,4 @@
     gsl_multifit_fdfsolver *s; // GSL data structure.
 
-    //    inputData = (psModelData *) psAlloc(sizeof(psModelData));
     psModelData inputData;
     inputData.n = numData;
@@ -293,15 +293,15 @@
     s = gsl_multifit_fdfsolver_alloc(T, numData, inputData.count);
 
-    printf("HERE 04\n");
+    printf("HERE 04 (HMMM)\n");
     // Initialize the GSL minimizer to use function defined by the data
     // structure "f" and x.vector as an initial guess for the parameters.
+    psMemCheckCorruption(1);
+    printf("HERE 05 (HMMM)\n");
     gsl_multifit_fdfsolver_set(s, &f, &x.vector);
-
-
-    printf("HERE 05\n");
     // Each iteration of the following loop will perform one step in an
     // attempt to minimized chi-squared for the function.  The loop exits
     // either when the change in parameters is small enough, or when the
     // maximum number of iterations is reached.
+    printf("HERE 06.0\n");
     do {
         iter++;
