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

« back to all changes in this revision

Viewing changes to unix/xc/lib/X11/QGreen.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: QGreen.c,v 1.3 2000/08/17 19:44:49 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
 *              XcmsQGreen.c - Query Green
 
29
 *
 
30
 *      DESCRIPTION
 
31
 *              Routine to obtain a color specification for full
 
32
 *              green intensity and zero red and blue intensities.
 
33
 *
 
34
 *
 
35
 */
 
36
 
 
37
#include "Xlibint.h"
 
38
#include "Xcms.h"
 
39
 
 
40
 
 
41
 
 
42
/************************************************************************
 
43
 *                                                                      *
 
44
 *                      PUBLIC INTERFACES                               *
 
45
 *                                                                      *
 
46
 ************************************************************************/
 
47
 
 
48
/*
 
49
 *      NAME
 
50
 *              XcmsQueryGreen
 
51
 *
 
52
 *      SYNOPSIS
 
53
 */
 
54
 
 
55
Status
 
56
XcmsQueryGreen(ccc, target_format, pColor_ret)
 
57
    XcmsCCC ccc;
 
58
    XcmsColorFormat target_format;
 
59
    XcmsColor *pColor_ret;
 
60
/*
 
61
 *      DESCRIPTION
 
62
 *              Returns the color specification in the target format for
 
63
 *              full intensity green and zero intensity red and blue.
 
64
 *
 
65
 *      RETURNS
 
66
 *              Returns XcmsSuccess, if failed; otherwise XcmsFailure
 
67
 *
 
68
 */
 
69
{
 
70
    XcmsColor tmp;
 
71
 
 
72
    tmp.format = XcmsRGBiFormat;
 
73
    tmp.pixel = 0;
 
74
    tmp.spec.RGBi.red = 0.0;
 
75
    tmp.spec.RGBi.green = 1.0;
 
76
    tmp.spec.RGBi.blue = 0.0;
 
77
    if (XcmsConvertColors(ccc, &tmp, 1, target_format, NULL) != XcmsSuccess) {
 
78
        return(XcmsFailure);
 
79
    }
 
80
    memcpy((char *)pColor_ret, (char *)&tmp, sizeof(XcmsColor));
 
81
    return(XcmsSuccess);
 
82
}