File: sharing3.c

package info (click to toggle)
splint 1%3A3.1.2%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 21,004 kB
  • sloc: ansic: 150,869; yacc: 3,465; sh: 3,034; makefile: 2,157; lex: 412
file content (61 lines) | stat: -rw-r--r-- 866 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
extern /*@only@*/ char *string_copyext (char *s) ;

void f (void)
{
  char *s;

  if (3 < 4)
    {
      s = string_copyext ("asdf");
      free (s);
    }
}


/*@only@*/ char *string_copy (char *s) 
{ 
  return s; /* 1. returns temp as only! */
}

/*@only@*/ char *copy_string1 (char *s)
{
  return string_copy (s); /* okay */
}

/*@only@*/ char *copy_string2 (char *s)
{
  return string_copyext (s); /* okay */
}

void string_free1 (char *s)
{
  free (s); /* 2. unqualified as only */
}

void string_free2 (/*@only@*/ char *s)
{
  free (s);
}

void string_free3 (/*@only@*/ char *s)
{
  char *t = string_copy (s);
  string_free2 (s);
  *t = 'a';
} /* 3. bad, t not released */

void string_free4 (/*@only@*/ char *s)
{
  char *t;
  int i;

  for (i = 0; i < 3; i++)
    {
      t = string_copy (s);
      *t = 'a';
      free (t);
    }

  free (s);
} /* okay */