diff options
author | marha <marha@users.sourceforge.net> | 2010-05-18 13:54:22 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2010-05-18 13:54:22 +0000 |
commit | 96bd0f520fd4a3a8c54e76638985389f60d936e0 (patch) | |
tree | 32643acb5ff4fc3b8a35c7842f94dea7d69c2c73 /libxcb/doc/tutorial/index.html | |
parent | 4787c5a8db870b0cff2326bd750c4d96c7d84e51 (diff) | |
parent | a457b80612b4f37be47099e9a0f38c4fc2a42252 (diff) | |
download | vcxsrv-96bd0f520fd4a3a8c54e76638985389f60d936e0.tar.gz vcxsrv-96bd0f520fd4a3a8c54e76638985389f60d936e0.tar.bz2 vcxsrv-96bd0f520fd4a3a8c54e76638985389f60d936e0.zip |
svn merge "^/branches/released" .
Diffstat (limited to 'libxcb/doc/tutorial/index.html')
-rw-r--r-- | libxcb/doc/tutorial/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libxcb/doc/tutorial/index.html b/libxcb/doc/tutorial/index.html index 58248079f..aa3ae1706 100644 --- a/libxcb/doc/tutorial/index.html +++ b/libxcb/doc/tutorial/index.html @@ -471,8 +471,6 @@ main () diff = end - start; /* free var */ - for (i = 0; i < count; ++i) - free (names[i]); free (atoms); free (cs); @@ -494,6 +492,8 @@ main () printf ("ratio : %f\n", diff_x / diff); free (atoms_x); + for (i = 0; i < count; ++i) + free (names[i]); free (names); XCloseDisplay (disp); |