~ubuntu-branches/ubuntu/gutsy/vnc4/gutsy

« back to all changes in this revision

Viewing changes to unix/xc/lib/X11/StCols.c

  • Committer: Bazaar Package Importer
  • Author(s): Ola Lundqvist
  • Date: 2006-05-15 20:35:17 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060515203517-l4lre1ku942mn26k
Tags: 4.1.1+X4.3.0-10
* Correction of critical security issue. Thanks to Martin Kogler
  <e9925248@student.tuwien.ac.at> that informed me about the issue,
  and provided the patch.
  This flaw was originally found by Steve Wiseman of intelliadmin.com.
* Applied patch from Javier Kohen <jkohen@users.sourceforge.net> that
  inform the user that only 8 first characters of the password will
  actually be used when typing more than 8 characters, closes:
  #355619.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Xorg: StCols.c,v 1.3 2000/08/17 19:44:56 cpqbld Exp $ */
 
2
 
 
3
/*
 
4
 * Code and supporting documentation (c) Copyright 1990 1991 Tektronix, Inc.
 
5
 *      All Rights Reserved
 
6
 * 
 
7
 * This file is a component of an X Window System-specific implementation
 
8
 * of Xcms based on the TekColor Color Management System.  Permission is
 
9
 * hereby granted to use, copy, modify, sell, and otherwise distribute this
 
10
 * software and its documentation for any purpose and without fee, provided
 
11
 * that this copyright, permission, and disclaimer notice is reproduced in
 
12
 * all copies of this software and in supporting documentation.  TekColor
 
13
 * is a trademark of Tektronix, Inc.
 
14
 * 
 
15
 * Tektronix makes no representation about the suitability of this software
 
16
 * for any purpose.  It is provided "as is" and with all faults.
 
17
 * 
 
18
 * TEKTRONIX DISCLAIMS ALL WARRANTIES APPLICABLE TO THIS SOFTWARE,
 
19
 * INCLUDING THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
 
20
 * PARTICULAR PURPOSE.  IN NO EVENT SHALL TEKTRONIX BE LIABLE FOR ANY
 
21
 * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
 
22
 * RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER IN AN ACTION OF
 
23
 * CONTRACT, NEGLIGENCE, OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
 
24
 * CONNECTION WITH THE USE OR THE PERFORMANCE OF THIS SOFTWARE.
 
25
 *
 
26
 *
 
27
 *      NAME
 
28
 *              XcmsStCols.c
 
29
 *
 
30
 *      DESCRIPTION
 
31
 *              Source for XcmsStoreColors
 
32
 *
 
33
 *
 
34
 */
 
35
/* $XFree86: xc/lib/X11/StCols.c,v 1.3 2001/01/17 19:41:44 dawes Exp $ */
 
36
 
 
37
#include "Xlibint.h"
 
38
#include "Xcmsint.h"
 
39
 
 
40
/* EXTERN */
 
41
 
 
42
/* SetGetCols.c */
 
43
extern Status _XcmsSetGetColors();
 
44
 
 
45
 
 
46
/************************************************************************
 
47
 *                                                                      *
 
48
 *                      PUBLIC ROUTINES                                 *
 
49
 *                                                                      *
 
50
 ************************************************************************/
 
51
 
 
52
/*
 
53
 *      NAME
 
54
 *              XcmsStoreColors - Store Colors
 
55
 *
 
56
 *      SYNOPSIS
 
57
 */
 
58
Status
 
59
XcmsStoreColors(dpy, colormap, pColors_in,
 
60
        nColors, pCompressed)
 
61
    Display *dpy;
 
62
    Colormap colormap;
 
63
    XcmsColor *pColors_in;
 
64
    unsigned int nColors;
 
65
    Bool *pCompressed;
 
66
/*
 
67
 *      DESCRIPTION
 
68
 *              Given device-dependent or device-independent color
 
69
 *              specifications, this routine will convert them to X RGB
 
70
 *              values then use it in a call to XStoreColors.
 
71
 *
 
72
 *      RETURNS
 
73
 *              XcmsFailure if failed;
 
74
 *              XcmsSuccess if it succeeded without gamut compression;
 
75
 *              XcmsSuccessWithCompression if it succeeded with gamut
 
76
 *                      compression;
 
77
 *
 
78
 *              Since XStoreColors has no return value, this routine
 
79
 *              does not return color specifications of the colors actually
 
80
 *              stored.
 
81
 */
 
82
{
 
83
    XcmsColor Color1;
 
84
    XcmsColor *pColors_tmp;
 
85
    Status retval;
 
86
 
 
87
    /*
 
88
     * Make copy of array of color specifications so we don't
 
89
     * overwrite the contents.
 
90
     */
 
91
    if (nColors > 1) {
 
92
        pColors_tmp = (XcmsColor *) Xmalloc(nColors * sizeof(XcmsColor));
 
93
    } else {
 
94
        pColors_tmp = &Color1;
 
95
    }
 
96
    memcpy((char *)pColors_tmp, (char *)pColors_in,
 
97
            nColors * sizeof(XcmsColor));
 
98
 
 
99
    /*
 
100
     * Call routine to store colors using the copied color structures
 
101
     */
 
102
    retval = _XcmsSetGetColors (XStoreColors, dpy, colormap,
 
103
            pColors_tmp, nColors, XcmsRGBFormat, pCompressed);
 
104
 
 
105
    /*
 
106
     * Free copies as needed.
 
107
     */
 
108
    if (nColors > 1) {
 
109
        Xfree((char *)pColors_tmp);
 
110
    }
 
111
 
 
112
    /*
 
113
     * Ah, finally return.
 
114
     */
 
115
    return(retval);
 
116
}