correct nightly crash on all platform linked to merge operation and missing opj_getop...
authorMickael Savinaud <savmickael@users.noreply.github.com>
Fri, 2 Sep 2011 09:00:58 +0000 (09:00 +0000)
committerMickael Savinaud <savmickael@users.noreply.github.com>
Fri, 2 Sep 2011 09:00:58 +0000 (09:00 +0000)
CHANGES
tests/compareRAWimages.c
tests/nonregression/CMakeLists.txt

diff --git a/CHANGES b/CHANGES
index 1a3bd1387183e680d912f3beb6b187dbcf9fbd4b..c710458f11df460271286e475bc3775c118e533f 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -5,6 +5,9 @@ What's New for OpenJPEG
 ! : changed
 + : added
 
+September 2, 2011
+! [mickael] correct nightly crash on all platform linked to merge operation and missing opj_getopt command
+
 September 1st, 2011
 ! [antonin] renamed getopt.{c/h} to opj_getopt.{c/h} and forced the use of these files rather than the system ones. This fixed issue 78. Credit to Winfried.
 
index 24738873662d92f604398db67612c7683be830c7..fb037c248c6d9b782e58ea4637304b0db0a15d46 100644 (file)
@@ -74,7 +74,7 @@ int parse_cmdline_cmp(int argc, char **argv, test_cmp_parameters* param)
        param->test_filename = NULL;
 
        opj_opterr = 0;
-       while ((c = getopt(argc, argv, optlist)) != -1)
+       while ((c = opj_getopt(argc, argv, optlist)) != -1)
                switch (c)
                {
                case 'b':
index 954f646d82f14e0701f15e5a7a1eb7e0759a66c3..a54450cce89bf99f87ece031b645f7095af4259b 100644 (file)
@@ -51,8 +51,6 @@ FOREACH(filepath ${OPJ_DATA_NR_LIST})
 #                       PROPERTIES DEPENDS 
 #                       NR-${filename}-decode)    
   
-<<<<<<< .working
-ENDFOREACH(filepath)=======
 ENDFOREACH(filepath)
 
 
@@ -209,8 +207,3 @@ FOREACH(OPJ_TEST_ENC_CMD_LINE ${OPJ_TEST_ENC_CMD_LINE_LIST})
   ENDIF(NOT IGNORE_LINE_FOUND)
 
 ENDFOREACH(OPJ_TEST_ENC_CMD_LINE)
-
-
-
-
->>>>>>> .merge-right.r907