• Skip to sidebar navigation
  • Skip to content

Bitbucket

  • More
    ProjectsRepositories
  • Help
    • Online help
    • Learn Git
    • Welcome to Bitbucket
    • Keyboard shortcuts
  • Log In
Alexander Dahl
  1. Alexander Dahl

buildroot

Public
Actions
  • Clone
  • Compare

Learn more about cloning repositories

You have read-only access

Navigation
  • Source
  • Commits
  • Branches
  • All Branches Graph
  • Forks
  1. Alexander Dahl
  2. buildroot

Source

buildroot/package/gcc/4.7.4/305-libmudflap-susv3-legacy.patch
Gustavo ZacariasGustavo Zacarias committed 2c6ca668b8612 Jun 2014
Raw file
Source viewDiff to previous
xxxxxxxxxx
 
1
Index: gcc-4.2/libmudflap/mf-hooks2.c
2
===================================================================
3
--- gcc-4.2/libmudflap/mf-hooks2.c  (revision 119834)
4
+++ gcc-4.2/libmudflap/mf-hooks2.c  (working copy)
5
@@ -427,7 +427,7 @@
6
 {
7
   TRACE ("%s\n", __PRETTY_FUNCTION__);
8
   MF_VALIDATE_EXTENT(s, n, __MF_CHECK_WRITE, "bzero region");
9
-  bzero (s, n);
10
+  memset (s, 0, n);
11
 }
12
 
13
 
14
@@ -437,7 +437,7 @@
15
   TRACE ("%s\n", __PRETTY_FUNCTION__);
16
   MF_VALIDATE_EXTENT(src, n, __MF_CHECK_READ, "bcopy src");
17
   MF_VALIDATE_EXTENT(dest, n, __MF_CHECK_WRITE, "bcopy dest");
18
-  bcopy (src, dest, n);
19
+  memmove (dest, src, n);
20
 }
21
 
22
 
23
@@ -447,7 +447,7 @@
24
   TRACE ("%s\n", __PRETTY_FUNCTION__);
25
   MF_VALIDATE_EXTENT(s1, n, __MF_CHECK_READ, "bcmp 1st arg");
26
   MF_VALIDATE_EXTENT(s2, n, __MF_CHECK_READ, "bcmp 2nd arg");
27
-  return bcmp (s1, s2, n);
28
+  return n == 0 ? 0 : memcmp (s1, s2, n);
29
 }
30
 
31
 
32
@@ -456,7 +456,7 @@
33
   size_t n = strlen (s);
34
   TRACE ("%s\n", __PRETTY_FUNCTION__);
35
   MF_VALIDATE_EXTENT(s, CLAMPADD(n, 1), __MF_CHECK_READ, "index region");
36
-  return index (s, c);
37
+  return strchr (s, c);
38
 }
39
 
40
 
41
@@ -465,7 +465,7 @@
42
   size_t n = strlen (s);
43
   TRACE ("%s\n", __PRETTY_FUNCTION__);
44
   MF_VALIDATE_EXTENT(s, CLAMPADD(n, 1), __MF_CHECK_READ, "rindex region");
45
-  return rindex (s, c);
46
+  return strrchr (s, c);
47
 }
48
 
49
 /* XXX:  stpcpy, memccpy */
  • Git repository management for enterprise teams powered by Atlassian Bitbucket
  • Atlassian Bitbucket v6.7.2
  • Documentation
  • Request a feature
  • About
  • Contact Atlassian
Atlassian

Everything looks good. We'll let you know here if there's anything you should know about.