Vertaling van "strcpy" in Engels
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
Die strcpy Funktion wird verwendet, um eine Zeichenkette zu anderen zu kopieren.
The strcpy function is used to copy one string to another.
Das Problem ist, daß es eventuell viele Stellen im Code gibt, wo strcpy benutzt wird.
The problem is that there might be many places in the code where strcpy is used.
Jetzt wissen wir, daß das Programm abstürzt, während es versucht, ein strcpy zu machen.
Now we know that the program is crashing while it tries to do a strcpy.
Verletzliche Funktionen sind oft Stringfunktionen wie strcpy().
Vulnerable functions are often string manipulation routines such as strcpy().
Was wir brauchen, ist ein stack trace, das uns sagt, welche Funktion aufgerufen wurde, bevor strcpy ausgeführt wurde.
What we need is a stack trace which will tell us which function was called before strcpy was executed.
Einsatz von strcpy () sind so etwas wie ein Problem des 20. Jahrhunderts.
use of strcpy() are something of a 20th century problem.
Wenn die Zielzeichenkette beim Aufruf von strcpy() nicht groß genug ist, kann alles Denkbare passieren.
If the destination string of a strcpy() is not large enough, then anything might happen.
Voreingestellt waren hierbei 'scanf' und 'strcpy'... etc..., allerdings ist es auch möglich weitere Funktionen... hinzuzufügen.
Defaults were 'scanf' and 'strcpy'... etc... it is possible to add more functions.
Suchergebnis(se) "strcpy"
Search result(s) "strcpy"
Sie müssen zugewiesen werden, idealerweise mit einer Stringfunktion wie strcpy() oder sprintf().
They need to be assigned to, ideally with a string function like strcpy() or sprintf().
Weiterhin gibt es einen spürbaren Leistungsverlust im Vergleich zu strcpy, wenn eine kurze Zeichenkette in einen großen Puffer kopiert wird.
There is also a significant performance loss compared to strcpy when copying a short string into a large buffer since strncpy NUL fills up the size specified.
Für diesen Fall gibt es einige Bibliotheken, welche die unsicheren Funktionen der C-Bibliothek (strcpy, fscanf, getwd, etc...) neu implementieren und sicherstellen, dass nicht hinter den Stack-Pointer geschrieben werden kann.
For these situations there are a number of libraries which re-implement the unsafe functions of the C-library (strcpy, fscanf, getwd, etc...) and ensure that these functions can never write past the stack pointer.
Kritische Funktionen finden: Identifizieren problematischer und fehlerhafter Funktionen (z.B. strcpy() in C/C++ oder file() in PHP).
Discovery of critical functions: Identification of problematic and incorrect functions (e.g. strcpy() in C/C++ or file() in PHP).