Move variable init around a bit to please crappy compilers.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3670 3789f03b-4d11-0410-bbf8-ca57d06f2519
diff --git a/common/jpeg/jcdctmgr.c b/common/jpeg/jcdctmgr.c
index ba83544..67f8228 100644
--- a/common/jpeg/jcdctmgr.c
+++ b/common/jpeg/jcdctmgr.c
@@ -411,10 +411,10 @@
JDIMENSION bi;
/* Make sure the compiler doesn't look up these every pass */
- workspace = fdct->workspace;
forward_DCT_method_ptr do_dct = fdct->dct;
convsamp_method_ptr do_convsamp = fdct->convsamp;
quantize_method_ptr do_quantize = fdct->quantize;
+ workspace = fdct->workspace;
sample_data += start_row; /* fold in the vertical offset once */
@@ -502,10 +502,10 @@
/* Make sure the compiler doesn't look up these every pass */
- workspace = fdct->float_workspace;
float_DCT_method_ptr do_dct = fdct->float_dct;
float_convsamp_method_ptr do_convsamp = fdct->float_convsamp;
float_quantize_method_ptr do_quantize = fdct->float_quantize;
+ workspace = fdct->float_workspace;
sample_data += start_row; /* fold in the vertical offset once */